-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (67 loc) · 1.85 KB
/
pr.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
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: pnpm install --frozen-lockfile
- run: pnpm nx affected --targets=build --base=origin/main --head=HEAD
test:
runs-on: ubuntu-latest
name: Unit tests
steps:
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: pnpm install --frozen-lockfile
- run: pnpm nx affected --targets=test --base=origin/main --head=HEAD --passWithNoTests --watch=false
static-analysis:
runs-on: ubuntu-latest
name: Static Analyzis
steps:
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: pnpm install --frozen-lockfile
- run: pnpm nx affected --targets=lint --base=origin/main --head=HEAD
- run: NX_BASE=origin/main NX_HEAD=HEAD ./scripts/typecheck.js
- run: NX_BASE=origin/main NX_HEAD=HEAD pnpm nx format:check
e2e:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: E2E tests
env:
VERSION: ${{ github.sha }}
steps:
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: pnpm install --frozen-lockfile
- run: npx playwright install --with-deps
- name: E2E
run: pnpm nx affected --targets=e2e --base=origin/main --head=HEAD
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: dist/.playwright/
retention-days: 3