-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from daengdaengLee/issue-31 - NPM PUBLISH 워크플로우 초안 작성
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | ||
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | ||
|
||
name: NPM PUBLISH | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
# @TODO 테스트 + 빌드 과정까지 문제 없는지 확인하고, 배포 + 다른 곳에서 설치까지 문제 없는지 확인하는 작업 분리 | ||
publish-npm: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
registry-url: https://registry.npmjs.org/ | ||
- run: npm ci | ||
- run: npm test | ||
- run: npm run build | ||
- run: npm publish --dry-run | ||
# env: | ||
# NODE_AUTH_TOKEN: ${{secrets.npm_token}} |