Skip to content

Lock file maintenance #85

Lock file maintenance

Lock file maintenance #85

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
build:
name: build on node@${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
- 21
# - 22
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
with:
persist-credentials: false
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run check
- run: npm run build