-
Notifications
You must be signed in to change notification settings - Fork 0
117 lines (98 loc) · 2.88 KB
/
main.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: Main Workflow
on:
push:
branches: [ main ]
jobs:
setup:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Setup
runs-on: ubuntu-latest
outputs:
hasChanges: ${{ steps.affected.outputs.hasChanges }}
matrix: ${{ steps.affected.outputs.matrix }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: 12
- name: Cache npm
uses: actions/cache@v2
with:
path: .npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
${{ runner.os }}-
- name: Install Dependencies
run: npm ci --cache .npm
- name: Calculate Affected Projects
uses: e-square-io/nx-github-actions/dist/packages/nx-affected-matrix@v1
id: affected
with:
targets: 'test,build'
distributed-task:
name: Run ${{ matrix.target }} ${{ matrix.bucket }}
if: ${{ needs.setup.outputs.hasChanges == 'true' }}
runs-on: ubuntu-latest
needs: [setup]
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.setup.outputs.matrix) }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
- name: Cache npm
uses: actions/cache@v2
with:
path: .npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
${{ runner.os }}-
- name: Install Dependencies
run: npm ci --cache .npm
- name: Execute target
uses: e-square-io/nx-github-actions/dist/packages/nx-distributed-task@v1
id: execute
with:
nxCloud: true
target: ${{ matrix.target }}
bucket: ${{ matrix.bucket }}
projects: ${{ matrix.projects }}
coverage:
name: Publish coverage
runs-on: ubuntu-latest
needs: [distributed-task]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: test
- uses: codecov/codecov-action@v1
with:
directory: ./coverage/packages/*
release:
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/main' }}
needs: [distributed-task]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
with:
name: build
- uses: actions/setup-node@v2
with:
node-version: 12
registry-url: 'https://registry.npmjs.org'
- name: NPM publish
run: npm publish
working-directory: dist/packages/bdir
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}