Skip to content

fix(deps): update node.js to v22 #154

fix(deps): update node.js to v22

fix(deps): update node.js to v22 #154

Workflow file for this run

name: test-and-build
on:
pull_request:
jobs:
test-and-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run lint
- run: npm run format:check
- run: npm run tsc:check
- run: npm run build
- run: npm run test