Skip to content

add a package-lock.json file so that CI can work properly #302

add a package-lock.json file so that CI can work properly

add a package-lock.json file so that CI can work properly #302

Workflow file for this run

name: Node.js CI
"on":
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- run: npm install
- run: npm test