File tree 3 files changed +18
-9
lines changed
3 files changed +18
-9
lines changed Original file line number Diff line number Diff line change
1
+ name : Build UI
2
+ runs :
3
+ using : " composite"
4
+ steps :
5
+ - uses : actions/checkout@v4
6
+ - uses : actions/setup-node@v4
7
+ with :
8
+ node-version-file : " .nvmrc"
9
+ cache : " yarn"
10
+ cache-dependency-path : " projects/ui/yarn.lock"
11
+ - name : Build
12
+ run : |
13
+ make build-ui
Original file line number Diff line number Diff line change 13
13
if : ${{ !github.event.pull_request.draft }}
14
14
runs-on : ubuntu-20.04
15
15
steps :
16
- - uses : actions/checkout@v4
17
- - uses : actions/setup-node@v4
18
- with :
19
- node-version-file : " .nvmrc"
20
- cache : " yarn"
21
- cache-dependency-path : " projects/ui/yarn.lock"
22
- - name : Build
23
- run : |
24
- make build-ui
16
+ - name : Build UI
17
+ uses : actions/build-ui
Original file line number Diff line number Diff line change 16
16
GH_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
17
17
18
18
steps :
19
+ - name : Build UI
20
+ uses : actions/build-ui
21
+
19
22
- name : Checkout repository
20
23
uses : actions/checkout@v2
21
24
You can’t perform that action at this time.
0 commit comments