Skip to content

Commit eae56c9

Browse files
committed
Fix GitHub Actions
1 parent 98ffdb5 commit eae56c9

File tree

4 files changed

+65
-220
lines changed

4 files changed

+65
-220
lines changed

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@
2626
"settings": {
2727
"html/indent": "tab",
2828
"html/report-bad-indent": "warn"
29-
}
29+
},
30+
"root": true
3031
}

.github/workflows/npm-publish.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ jobs:
3232
env:
3333
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
3434

35-
publish-gpr:
36-
needs: build
37-
runs-on: ubuntu-latest
38-
permissions:
39-
contents: read
40-
packages: write
41-
steps:
42-
- uses: actions/checkout@v2
43-
- uses: actions/setup-node@v2
44-
with:
45-
node-version: 14
46-
registry-url: https://npm.pkg.github.com/
47-
- run: npm ci
48-
- run: npm publish
49-
env:
50-
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
35+
# publish-gpr:
36+
# needs: build
37+
# runs-on: ubuntu-latest
38+
# permissions:
39+
# contents: read
40+
# packages: write
41+
# steps:
42+
# - uses: actions/checkout@v2
43+
# - uses: actions/setup-node@v2
44+
# with:
45+
# node-version: 14
46+
# registry-url: https://npm.pkg.github.com/
47+
# - run: npm ci
48+
# - run: npm publish
49+
# env:
50+
# NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)