Files
archtika/.github/workflows/playwright.yml
2024-09-01 17:22:04 +02:00

23 lines
411 B
YAML

name: "Playwright tests"
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v27
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Run playwright tests
run: |
cd web-app
nix develop .#web --command bash -c "npm run test"