Skip to content

Commit

Permalink
feat(sparql-in-memory): fix npm installation in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
adlerfaulkner committed Nov 2, 2023
1 parent 301b413 commit 761c9f7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- run: npm ci --ignore-scripts
- run: npm ci --ignore-scripts --legacy-peer-deps
- run: npm run lint
test-unit:
runs-on: ${{ matrix.operating-system }}
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Check out repository
uses: actions/checkout@v3
- name: Install dependencies and run build scripts
run: npm ci
run: npm ci --legacy-peer-deps
- name: Type-check tests
run: npm run test:ts
- name: Run unit tests
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Check out repository
uses: actions/checkout@v3
- name: Install dependencies and run build scripts
run: npm ci
run: npm ci --legacy-peer-deps
- name: Run integration tests
run: npm run test:integration
test-integration-windows:
Expand All @@ -99,7 +99,7 @@ jobs:
- name: Check out repository
uses: actions/checkout@v3
- name: Install dependencies and run build scripts
run: npm ci
run: npm ci --legacy-peer-deps
- name: Run integration tests
run: npm run test:integration
test-package:
Expand All @@ -122,7 +122,7 @@ jobs:
- name: Check out repository
uses: actions/checkout@v3
- name: Install dependencies and run build scripts
run: npm ci
run: npm ci --legacy-peer-deps
- name: Run package tests
run: npm run test:package
coveralls:
Expand Down

0 comments on commit 761c9f7

Please sign in to comment.