-
Notifications
You must be signed in to change notification settings - Fork 0
94 lines (77 loc) · 2.68 KB
/
ci-nx-graphql-code-generator.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
name: CI - @eddeee888/nx-graphql-code-generator
on:
push:
branches-ignore:
- master
env:
node-version: '20.x'
jobs:
precheck:
name: Check jobs to run
runs-on: ubuntu-22.04
outputs:
affected-nx-graphql-code-generator: ${{ steps.affected.outputs.nx-graphql-code-generator }}
affected-nx-graphql-code-generator-e2e: ${{ steps.affected.outputs.nx-graphql-code-generator-e2e }}
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.node-version }}
cache: yarn
cache-dependency-path: '**/yarn.lock'
- name: Install deps
run: yarn install --prefer-offline
- name: Check affected projects
id: affected
run: |
echo "nx-graphql-code-generator=$(./tools/bin/check-affected.sh lib nx-graphql-code-generator origin/master)" >> $GITHUB_OUTPUT
echo "nx-graphql-code-generator-e2e=$(./tools/bin/check-affected.sh lib nx-graphql-code-generator-e2e origin/master)" >> $GITHUB_OUTPUT
cat $GITHUB_OUTPUT
nx-graphql-code-generator:
name:
runs-on: ubuntu-22.04
needs: precheck
if: ${{ needs.precheck.outputs.affected-nx-graphql-code-generator == 'true' }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.node-version }}
cache: yarn
cache-dependency-path: '**/yarn.lock'
- name: Install deps
run: yarn install --prefer-offline
- name: Lint
run: yarn nx lint nx-graphql-code-generator
- name: Test
run: yarn nx test nx-graphql-code-generator
- name: Build
run: yarn nx build nx-graphql-code-generator
nx-graphql-code-generator-e2e:
name:
runs-on: ubuntu-22.04
needs: precheck
if: ${{ needs.precheck.outputs.affected-nx-graphql-code-generator == 'true' || needs.precheck.outputs.affected-nx-graphql-code-generator-e2e == 'true' }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.node-version }}
cache: yarn
cache-dependency-path: '**/yarn.lock'
- name: Install deps
run: yarn install --prefer-offline
- name: e2e
run: yarn nx e2e nx-graphql-code-generator-e2e