Skip to content

Commit

Permalink
Test container
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Feb 5, 2024
1 parent 88734a4 commit f75c8f8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/testing-container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: E2E Testing

on:
workflow_dispatch:

jobs:
testing:
name: Start E2E Testing from container
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.41.1-jammy

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"

- name: Install dependencies
run: npm ci

- name: Run Playwright tests
run: npx playwright test
continue-on-error: true

0 comments on commit f75c8f8

Please sign in to comment.