Skip to content

Commit a305845

Browse files
committed
Disable broken script
1 parent 47094a4 commit a305845

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
- run: npm install json -g
29-
- run: npm ci
30-
- run: npm run build --if-present
29+
- run: npm install
30+
- run: npm run build
3131
- run: npm test
32-
- run: npm run node-coveralls
32+
# Currently broken
33+
#- run: npm run node-coveralls

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
with:
2828
node-version: 12
2929
registry-url: https://registry.npmjs.org/
30-
- run: npm ci
30+
- run: npm install
3131
- run: npm publish
3232
env:
33-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
33+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
3434

3535
publish-gpr:
3636
needs: build
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
node-version: 12
4646
registry-url: https://npm.pkg.github.com/
47-
- run: npm ci
47+
- run: npm install
4848
- run: npm publish
4949
env:
5050
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)