1
0
mirror of https://github.com/lancedikson/bowser synced 2024-10-27 20:34:22 +00:00
This commit is contained in:
Naor Peled 2023-11-17 20:44:59 +02:00
parent 25f7232624
commit ebe0dd4adf
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm run build
- run: nyc npm test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js
env:

View File

@ -20,7 +20,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci
- name: Build
run: npm run build
- name: Run tests
@ -39,6 +39,6 @@ jobs:
with:
node-version: '16'
- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci
- name: Run ESLint
run: npm run lint:check