Skip to content

Sync package-lock.json and check it in CI (#82) #1

Sync package-lock.json and check it in CI (#82)

Sync package-lock.json and check it in CI (#82) #1

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20', '22', '23']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm install --frozen-lockfile
- run: git diff --exit-code package-lock.json
- run: npx tsc --noEmit