-
Notifications
You must be signed in to change notification settings - Fork 18
69 lines (67 loc) · 1.83 KB
/
tests.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
58
59
60
61
62
63
64
65
66
67
68
69
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
type-safety:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: pnpm
uses: pnpm/action-setup@v2
- name: node
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- name: install
run: pnpm -r i --frozen-lockfile
- name: check-tsc
run: pnpm tsc
- name: check-astro
run: pnpm astro check
e2e:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: pnpm
uses: pnpm/action-setup@v2
- name: node
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- name: install
run: pnpm -r i --frozen-lockfile
- name: playwright-version
run: |
PLAYWRIGHT_VERSION=$(pnpm ls @playwright/test | grep @playwright | sed 's/@playwright\/test //')
echo "Playwright's Version: $PLAYWRIGHT_VERSION"
echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV
- name: playwright-cache
id: cache-playwright
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: playwright-browsers-${{ env.PLAYWRIGHT_VERSION }}
- name: playwright-install
if: steps.cache-playwright.outputs.cache-hit != 'true'
run: pnpm playwright install --with-deps
- name: env
run: cp .env.example .env
- name: tests
env:
PORT: 3000
run: pnpm playwright test
- name: upload
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30