You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vitepress/.github/workflows/test.yml

41 lines
735 B

4 years ago
name: Test
on:
push:
branches:
- main
pull_request:
4 years ago
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16]
4 years ago
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
with:
version: 7.0.1
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v3
4 years ago
with:
node-version: ${{ matrix.node_version }}
cache: 'pnpm'
- name: Install deps
run: pnpm install
- name: Build
run: pnpm run build
- name: Lint
run: pnpm run lint-fail
- name: Test
run: pnpm run test-run