Commit 5d10838 1 parent 3c3539a commit 5d10838 Copy full SHA for 5d10838
File tree 2 files changed +30
-4
lines changed
2 files changed +30
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Build Theme
2
+ on :
3
+ push :
4
+ branches :
5
+ - develop
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - develop
10
+ - main
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+ strategy :
15
+ max-parallel : 24
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+ - name : Setup Node
19
+ uses : actions/setup-node@v4
20
+ with :
21
+ node-version : 20.x
22
+ registry-url : ' https://registry.npmjs.org'
23
+ - name : Install dependencies 📦
24
+ run : npm install
25
+ - name : Run build lib
26
+ run : npm run build:lib
Original file line number Diff line number Diff line change 1
- name : Node.js Package
1
+ name : Publish new release
2
2
on :
3
3
release :
4
4
types : [created]
5
5
jobs :
6
6
build :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v2
10
- - uses : actions/setup-node@v2
9
+ - uses : actions/checkout@v4
10
+ uses : actions/setup-node@v4
11
11
with :
12
- node-version : ' 18 .x'
12
+ node-version : ' 20 .x'
13
13
registry-url : ' https://registry.npmjs.org'
14
14
- run : npm install
15
15
- run : npm run build:lib
You can’t perform that action at this time.
0 commit comments