Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: reset e2e #602

Merged
merged 1 commit into from
Nov 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ jobs:
# run: make get-test-data-from-release
# - name: Prepare test data
# run: make prepare-test-data
- name: Build lib
run: make build
- name: Prepare test environment
run: make prepare-test-ci
- name: Run e2e tests
run: make e2e-tests

release-please:
name: Prepare next release
Expand Down Expand Up @@ -123,12 +129,7 @@ jobs:
run: npm run build
- if: "github.event.release.prerelease"
name: Publish pre-release to GitHub packages
run: |
echo "//npm.pkg.github.com/:_authToken=${{secrets.GITHUB_TOKEN}}" >> .npmrc

npm publish ${{env.DistDirectory}} --tag rc --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN_DASCHBOT}}
run: npm publish ${{env.DistDirectory}} --registry=https://npm.pkg.github.com/ --_authToken=${{secrets.GITHUB_TOKEN}} --tag rc --access public
- if: "!github.event.release.prerelease"
name: Publish release to GitHub packages
run: npm publish ${{env.DistDirectory}} --registry=https://npm.pkg.github.com/ --_authToken=${{secrets.GITHUB_TOKEN}} --access public
Expand Down
Loading