Skip to content

Bump @types/node from 20.14.9 to 22.0.2 #347

Bump @types/node from 20.14.9 to 22.0.2

Bump @types/node from 20.14.9 to 22.0.2 #347

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x, 18.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run validate
- run: npm run lint
- run: npm test -- --coverage
- uses: codecov/codecov-action@v4
with:
file: ./coverage/coverage-final.json
token: ${{ secrets.CODECOV_TOKEN }}