Migrate from jest to vitest (wip) #314
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Status | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
node-version: [8.3.0, 18.x] | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.1.7 | |
- name: Setup Node | |
uses: volta-cli/action@v4.1.1 | |
- name: Switch Node version | |
run: volta pin node@${{ matrix.node-version }} | |
- name: Node.js version | |
run: node -v | |
- if: ${{ matrix.node-version == '18.x' }} | |
run: npm -v | |
# Node 8.3.0 comes with npm 5.3.0. | |
# npm 5.7.1 is the first version to support npm ci | |
- if: ${{ matrix.node-version != '18.x' }} | |
run: npm install -g npm@5.7.1 | |
- run: npm install | |
- run: npm run e2e | |
# mock-fs dropped support for Node 10 | |
- if: ${{ matrix.node-version == '18.x' }} | |
run: npm t | |
# ESLint 7+ uses `} catch {` which isn't supported in Node 8 | |
- if: ${{ matrix.node-version == '18.x' }} | |
run: npm run lint |