Skip to content

Commit 7d689e8

Browse files
Fix CI
1 parent 9fc6445 commit 7d689e8

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
uses: actions/setup-node@v2
1818
with:
1919
node-version: ${{ matrix.node-version }}
20-
- run: npm ci
20+
- run: npm ci --ignore-scripts
21+
- run: npm run build
2122
- run: npm run test
2223
- name: Upload coverage to Codecov
2324
uses: codecov/codecov-action@v1

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid/access-token-verifier",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"description": "Verifies Solid OIDC access tokens via their webid claim, and thus asserts ownership of a WebID.",
55
"license": "MIT",
66
"keywords": [
@@ -30,7 +30,7 @@
3030
"test": "jest",
3131
"postinstall": "npm run build",
3232
"prepare": "[[ -n \"$CI\" ]] || husky install",
33-
"prepublishOnly": "npm run audit && npm ci && npm run test"
33+
"prepublishOnly": "npm run audit && npm ci --ignore-scripts && npm run build && npm run test"
3434
},
3535
"publishConfig": {
3636
"registry": "https://registry.npmjs.org"

0 commit comments

Comments
 (0)