Skip to content

Update all non-major dependencies #4

Update all non-major dependencies

Update all non-major dependencies #4

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@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run check
- run: npm run test:unit
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unit
- run: npm run build