Skip to content

Commit

Permalink
chore: retry release
Browse files Browse the repository at this point in the history
  • Loading branch information
stipsan committed Aug 15, 2023
1 parent 1f02b25 commit 1259f10
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,35 +74,13 @@ jobs:
npm run build:browser.js
npm run test:browser.js
e2e:
name: Run integration tests on real redis
runs-on: ubuntu-latest
needs: [build]
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
- name: Install dependencies
run: npm ci
- name: test:e2e
run: npm run test:e2e -- --detectOpenHandles

release:
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
needs: [build, test, browser, e2e]
needs: [build, test, browser]
# only run if opt-in during workflow_dispatch
if: github.event.inputs.release == 'true'
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1259f10

Please sign in to comment.