Skip to content

Commit 8e11d39

Browse files
committed
CI workflow 가 NPM_TOKEN secret 을 사용하도록 변경
1 parent c0a016f commit 8e11d39

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,15 @@ jobs:
2020

2121
- name: Install Dependencies
2222
run: yarn --immutable
23+
env:
24+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
25+
# because of .npmrc for supporting npm publish using github action
2326

2427
- name: Test
2528
run: yarn test:cov
29+
env:
30+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
31+
# because of .npmrc for supporting npm publish using github action
2632

2733
- name: Upload Code Coverage
2834
run: bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)