We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6210589 commit c8b32d2Copy full SHA for c8b32d2
.github/workflows/preview.yml
@@ -3,7 +3,6 @@
3
# Based on https://github.com/marketplace/actions/deploy-pr-preview#usage.
4
5
name: Deploy PR previews
6
-
7
on:
8
pull_request:
9
branches:
@@ -19,7 +18,8 @@ on:
19
18
- 'static/**'
20
- '.env'
21
- '.env.*'
22
+permissions:
+ contents: write
23
concurrency: preview-${{ github.ref }}
24
25
jobs:
.github/workflows/test.yml
@@ -20,12 +20,8 @@ jobs:
with:
node-version: lts/*
- name: Install dependencies
- run: npm ci
+ run: |
+ npx playwright install --with-deps
+ npm ci
26
- name: Run tests
27
run: npm run test
- - uses: actions/upload-artifact@v4
- if: ${{ !cancelled() }}
28
- with:
29
- name: playwright-report
30
- path: playwright-report/
31
- retention-days: 30
0 commit comments