Skip to content

Commit 7152608

Browse files
authored
Fix CI without token (#6)
1 parent 6ef0fcd commit 7152608

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@ jobs:
66
main:
77
runs-on: ubuntu-latest
88
steps:
9-
- name: Create npm configuration
10-
run: echo "//npm.pkg.github.com/:_authToken=${token}" >> ~/.npmrc
11-
env:
12-
token: ${{ secrets.GITHUB_TOKEN }}
13-
14-
- uses: actions/checkout@v1
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
11+
with:
12+
node-version: 16
1513
- run: npm ci
1614
- run: npm run lint
1715
- run: npm run build

0 commit comments

Comments
 (0)