Skip to content

Commit

Permalink
chore(*): require test before deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
polymath-eric committed Oct 9, 2024
1 parent 16f9f3e commit 2fefd9d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
release:
name: Building and releasing project
runs-on: ubuntu-latest
needs: ['lint-and-test']
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -37,6 +38,8 @@ jobs:
git config user.email "[email protected]"
- name: install dependencies
run: yarn --frozen-lockfile
- name: authorize npm publish
run: echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > ~/.npmrc
- name: build and release
run: |
PRE_RELEASE_OPTION=""
Expand Down

0 comments on commit 2fefd9d

Please sign in to comment.