Keep package.json and package-lock.json in sync (#154)

This commit is contained in:
kezhenxu94
2022-09-06 14:31:52 +08:00
committed by GitHub
parent 61a4d2f759
commit 49bc349064
2 changed files with 175 additions and 38 deletions

View File

@@ -44,9 +44,9 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint, build, and test
- name: npm ci, lint, build, and test
run: |
npm install
npm ci
npm run lint
npm run build --if-present
npm run test:unit