bump up node.js version used in CI jobs to version 20 #22
This file contains hidden or 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: CI build | |
on: [push] | |
jobs: | |
Build-And-Test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [20] | |
name: Node ${{ matrix.node }} sample | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm ci | |
- run: npm test | |
- run: npm run test:coverage | |
- run: npm run lint | |
- run: npm run check-format | |
- run: npm run build |