Skip to content

Commit 0beadf2

Browse files
committed
attempt to fix ci
1 parent 6f6a69e commit 0beadf2

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ jobs:
2020
cache: 'npm'
2121

2222
- name: Install dependencies
23-
run: npm ci
23+
run: |
24+
npm install -g node-gyp
25+
npm ci --ignore-scripts
26+
npm rebuild
2427
2528
- name: Run linting
2629
run: npm run lint
@@ -34,11 +37,5 @@ jobs:
3437
name: coverage-report
3538
path: coverage
3639

37-
- name: Build
38-
run: npm run build
39-
4040
- name: Package
41-
run: npm run package
42-
43-
- name: Create installer
44-
run: npm run make
41+
run: npm run package

0 commit comments

Comments
 (0)