Skip to content

Commit

Permalink
Adapt and move GitHub Actions configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
leotaku committed Aug 4, 2024
1 parent 625ed48 commit b65c298
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 27 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: playwright

on:
pull_request:
push:
tags:
branches:
- master

jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm ci
- run: npx playwright install --with-deps
- run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
27 changes: 0 additions & 27 deletions examples/playwright/.github/workflows/playwright.yml

This file was deleted.

0 comments on commit b65c298

Please sign in to comment.