Skip to content

[Feature] Update action to use node 20 (#9) #36

[Feature] Update action to use node 20 (#9)

[Feature] Update action to use node 20 (#9) #36

Workflow file for this run

name: Test
on: ['push', 'pull_request']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm run build
- run: npm run test