-
Notifications
You must be signed in to change notification settings - Fork 7
96 lines (89 loc) · 2.33 KB
/
pr_commit.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: PR Commit
on:
pull_request:
branches: [main]
env:
WORKSPACE_ROOT: ./
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Checkout code into workspace directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up NodeJS (v20)
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install npm modules
run: npm i
- name: Lint code
run: npx nx affected:lint --base=origin/main --parallel
build-apps:
name: Build Apps
runs-on: ubuntu-22.04
steps:
- name: Checkout code into workspace directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up NodeJS (v20)
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install npm modules
run: npm i
- name: Build apps
run: npx nx affected:build --base=origin/main --parallel
check-format:
name: Check Format
runs-on: ubuntu-22.04
steps:
- name: Checkout code into workspace directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up NodeJS (v20)
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install npm modules
run: npm i
- name: Check code format
run: npx nx format:check --base=origin/main
test:
name: Unit Tests
runs-on: ubuntu-22.04
steps:
- name: Checkout code into workspace directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up NodeJS (v20)
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install npm modules
run: npm i
- name: Run unit tests
run: npx nx affected:test --base=origin/main --parallel
e2e:
name: E2E Tests
runs-on: ubuntu-22.04
steps:
- name: Checkout code into workspace directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up NodeJS (v20)
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install npm modules
run: npm i
- name: Build plugins
run: npm run build
- name: Run e2e tests
run: npx nx affected:e2e --base=origin/main