Skip to content

Update package.json #1181

Update package.json

Update package.json #1181

Workflow file for this run

name: NPM Clean Install
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# Use both LTS releases and latest one for tests
node: [ 22 ]
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Clean install and lint
run: |
rm package-lock.json
npm i
npm run lint