Skip to content

Commit

Permalink
Merge pull request #53 from hubotio/not-connecting
Browse files Browse the repository at this point in the history
fix: Fails to connect to Redis
  • Loading branch information
joeyguerra authored Jul 23, 2023
2 parents 91cff9d + fde750a commit 5eba5d7
Show file tree
Hide file tree
Showing 5 changed files with 126 additions and 167 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: End to end tests
on: [push]

permissions:
contents: read
jobs:
e2e-tests:
name: E2E Tests
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Install Dependencies
run: npm ci
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Run Tests
run: npm run e2e
204 changes: 43 additions & 161 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5eba5d7

Please sign in to comment.