-
Notifications
You must be signed in to change notification settings - Fork 2
57 lines (48 loc) · 1.7 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: test
# As recommended by Graphite
# (https://graphite.dev/docs/github-configuration-guidelines#github-actions)
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
# Cancel in-progress jobs for the same work
# (https://graphite.dev/docs/troubleshooting#why-are-my-actions-running-twice)
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}-${{ github.ref == 'refs/heads/main' && github.sha || ''}}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install devbox
uses: jetpack-io/devbox-install-action@v0.11.0
with:
enable-cache: true
devbox-version: 0.13.6
- name: Install dependencies
run: devbox run pnpm install
- name: Dump Playwright Information
run: |
eval "$(devbox global shellenv)"
eval "$(devbox shellenv)"
echo -------------------------------------------------------
printenv | grep PLAYWRIGHT
echo -------------------------------------------------------
echo "playwright version:"
pnpm exec playwright --version
echo -------------------------------------------------------
echo "@playwright/test version:"
pnpm ls -r @playwright/test
echo -------------------------------------------------------
- name: Validate and Build
run: |
devbox run pnpm prep
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: "**/playwright-report/"
retention-days: 30