File tree 5 files changed +25
-19
lines changed
5 files changed +25
-19
lines changed Original file line number Diff line number Diff line change @@ -17,27 +17,32 @@ jobs:
17
17
18
18
- uses : pnpm/action-setup@v4
19
19
with :
20
- version : 9.7.1
20
+ version : 9.10.0
21
21
run_install : true
22
22
env :
23
23
NPM_TOKEN : xxx
24
24
25
- - name : Install playwright browsers
26
- run : pnpm exec playwright install
27
-
28
- - name : Run all checks
29
- run : xvfb-run pnpm run ci
25
+ - name : Run all tests
26
+ run : pnpm run ci
30
27
env :
31
28
NPM_TOKEN : xxx
32
29
33
- - name : Upload twopoint5d-elements-e2e test-results artifacts
34
- uses : actions/upload-artifact@v3
35
- if : failure()
36
- with :
37
- retention-days : 3
38
- name : twopoint5d-elements-e2e-test-results
39
- path : |
40
- packages/twopoint5d-elements-e2e/test-results
30
+ # - name: Install playwright browsers
31
+ # run: pnpm exec playwright install
32
+
33
+ # - name: Run all checks
34
+ # run: xvfb-run pnpm run ci
35
+ # env:
36
+ # NPM_TOKEN: xxx
37
+
38
+ # - name: Upload twopoint5d-elements-e2e test-results artifacts
39
+ # uses: actions/upload-artifact@v3
40
+ # if: failure()
41
+ # with:
42
+ # retention-days: 3
43
+ # name: twopoint5d-elements-e2e-test-results
44
+ # path: |
45
+ # packages/twopoint5d-elements-e2e/test-results
41
46
42
47
deploy :
43
48
name : Deploy packages
52
57
53
58
- uses : pnpm/action-setup@v4
54
59
with :
55
- version : 9.7.1
60
+ version : 9.10.0
56
61
run_install : true
57
62
env :
58
63
NPM_TOKEN : xxx
Original file line number Diff line number Diff line change 13
13
"scripts" : {
14
14
"build" : " pnpm nx run-many -t build" ,
15
15
"test" : " pnpm nx run-many -t test" ,
16
+ "test:ci" : " pnpm nx run-many -t test --projects=tag:ci" ,
16
17
"lint" : " pnpm nx run-many -t lint" ,
17
18
"test:affected" : " pnpm nx affected -t test" ,
18
19
"clean" : " pnpm nx run-many -t clean && rimraf dist" ,
21
22
"cbt" : " pnpm run-s -sn clean build test" ,
22
23
"lookbook" : " pnpm nx dev lookbook" ,
23
24
"landing-page" : " pnpm nx dev landing-page" ,
24
- "ci" : " pnpm run-s -sn build lint test" ,
25
+ "ci" : " pnpm run-s -sn build lint test:ci " ,
25
26
"playwright:install" : " pnpm exec playwright install" ,
26
27
"ci:install" : " pnpm run-s -sn playwright:install ci"
27
28
},
Original file line number Diff line number Diff line change 20
20
"dependsOn" : [" ^build" ]
21
21
}
22
22
},
23
- "tags" : []
23
+ "tags" : [" ci " ]
24
24
}
Original file line number Diff line number Diff line change 13
13
}
14
14
}
15
15
},
16
- "tags" : []
16
+ "tags" : [" ci " ]
17
17
}
Original file line number Diff line number Diff line change 13
13
}
14
14
}
15
15
},
16
- "tags" : []
16
+ "tags" : [" ci " ]
17
17
}
You can’t perform that action at this time.
0 commit comments