Skip to content

Commit

Permalink
0.0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
bahrus committed Feb 29, 2024
1 parent b0569e3 commit 2a8b06b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Playwright Tests
on: [push]
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test

0 comments on commit 2a8b06b

Please sign in to comment.