Bump @types/node from 18.15.3 to 20.9.5 #1207
Workflow file for this run
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: Test changes | |
on: | |
push: | |
branches-ignore: | |
- main | |
- 'skip-ci-tests/*' | |
jobs: | |
unit: | |
name: Run unit tests on ${{ matrix.os }} and collect coverage | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: '18.x' | |
- run: npm ci | |
- run: npm run build | |
- run: npm run test:ci |