Skip to content

Update all non-major dependencies #198

Update all non-major dependencies

Update all non-major dependencies #198

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
name: node@${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18', '20']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run check
- run: npm run test:unit
- run: npm run build