generated from amosproj/amos202Xss0Y-projname
-
Notifications
You must be signed in to change notification settings - Fork 1
115 lines (92 loc) · 3.54 KB
/
lint-test-build.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: Lint Test Build
on:
push:
branches:
- develop
pull_request:
branches:
- develop
workflow_dispatch:
jobs:
install-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Restore cached npm dependencies
uses: actions/cache@v4
with:
path: node_modules
key: npm-dependencies-${{ hashFiles('pnpm-lock.yaml') }}
- uses: actions/setup-node@v4
if: steps.cache.outputs.cache-hit != 'true'
with:
node-version: 20.x
- run: pnpm install --frozen-lockfile --ignore-scripts
if: steps.cache.outputs.cache-hit != 'true'
- name: Derive appropriate SHAs for base and head for `nx affected` commands
id: set-shas
uses: nrwl/nx-set-shas@v4
with:
main-branch-name: ${{ inputs.main-branch-name }}
last-successful-event: ${{ inputs.last-successful-event }}
- name: Generate prisma client
run: pnpm nx run backend:"prisma:generate"
lint:
runs-on: ubuntu-latest
needs: install-deps
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: pnpm/action-setup@v3
with:
version: 8
- run: git fetch --no-tags --prune --depth=1 origin develop
- name: Cache node modules
uses: actions/cache@v4
with:
path: node_modules
key: npm-dependencies-${{ hashFiles('pnpm-lock.yaml') }}
- run: pnpm nx affected --target=lint --parallel=3 --configuration=ci --base=${{ steps.set-shas.main-branch-name }} --head=${{ steps.set-shas.last-successful-event }}
test:
runs-on: ubuntu-latest
needs: install-deps
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: pnpm/action-setup@v3
with:
version: 8
- run: git fetch --no-tags --prune --depth=1 origin develop
- name: Cache node modules
uses: actions/cache@v4
with:
path: node_modules
key: npm-dependencies-${{ hashFiles('pnpm-lock.yaml') }}
- run: pnpm nx affected --target=lint --parallel=3 --configuration=ci --base=${{ steps.set-shas.main-branch-name }} --head=${{ steps.set-shas.last-successful-event }}
build:
runs-on: ubuntu-latest
needs: install-deps
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: pnpm/action-setup@v3
with:
version: 8
- run: git fetch --no-tags --prune --depth=1 origin develop
- name: Cache node modules
uses: actions/cache@v4
with:
path: node_modules
key: npm-dependencies-${{ hashFiles('pnpm-lock.yaml') }}
- run: pnpm nx affected --target=lint --parallel=3 --configuration=ci --base=${{ steps.set-shas.main-branch-name }} --head=${{ steps.set-shas.last-successful-event }}