File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 28
28
with :
29
29
node-version : 16.x
30
30
31
- - name : Install dependencies
32
- run : npm ci --ignore-scripts
31
+ - name : Install dependencies and build packages
32
+ run : npm install
33
+
34
+ - name : Run tests
35
+ run : npm run test -- --ci --maxWorkers=2
36
+ env :
37
+ NODE_OPTIONS : " --max-old-space-size=4096" # Increase heap size for jest
33
38
34
39
- name : Create Release Pull Request
35
40
uses : changesets/action@master
Original file line number Diff line number Diff line change 12
12
"prepare" : " husky install && npm run build" ,
13
13
"tsc" : " npm run tsc -ws" ,
14
14
"changeset" : " changeset" ,
15
- "release" : " npm install && npm test && changeset publish"
15
+ "release" : " changeset publish"
16
16
},
17
17
"engines" : {
18
18
"node" : " >=14.0.0" ,
You can’t perform that action at this time.
0 commit comments