Skip to content

Commit

Permalink
feat(e2e): added e2e workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lauromueller committed Dec 25, 2023
1 parent 5e6c78a commit 1694a34
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: E2E tests

on:
workflow_dispatch:

jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: npm ci
- name: Run E2E tests
run: npm run test:e2e

0 comments on commit 1694a34

Please sign in to comment.