Skip to content

Commit

Permalink
add redis test to playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs224 committed Sep 22, 2023
1 parent 31cad3d commit 893598d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,30 @@ jobs:
- name: Run Playwright tests
working-directory: ./playwright
run: npx playwright test

test-redis-store:
timeout-minutes: 60
runs-on: ubuntu-latest
env:
STORE: redis
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: denoland/setup-deno@v1
with:
deno-version: v1.37.0
- name: Setup Redis
uses: supercharge/[email protected]
with:
redis-version: 7
- name: Install dependencies
working-directory: ./playwright
run: npm ci
- name: Install Playwright Browsers
working-directory: ./playwright
run: npx playwright install chromium
- name: Run Playwright tests
working-directory: ./playwright
run: npx playwright test

0 comments on commit 893598d

Please sign in to comment.