File tree Expand file tree Collapse file tree 3 files changed +45
-6
lines changed
Expand file tree Collapse file tree 3 files changed +45
-6
lines changed Original file line number Diff line number Diff line change 11name : CI
22
3- on :
4- push :
5- branches :
6- - master
7- pull_request :
3+ # on:
4+ # push:
5+ # branches:
6+ # - master
7+ # pull_request:
88
99permissions :
1010 actions : read
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ permissions :
10+ actions : read
11+ contents : read
12+
13+ jobs :
14+ main :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v4
18+ with :
19+ fetch-depth : 0
20+
21+ - uses : actions/setup-node@v4
22+ with :
23+ node-version : latest
24+
25+ - run : npm ci
26+
27+ - uses : nrwl/nx-set-shas@v4
28+
29+ - name : Install Playwright Browsers
30+ run : npx playwright install --with-deps
31+
32+ - run : npm nx affected -t lint test build
33+ - run : npm nx affected --parallel 1 -t e2e-ci
34+ - uses : actions/upload-artifact@v4
35+ if : ${{ !cancelled() }}
36+ with :
37+ name : playwright-report
38+ path : dist/.playwright/apps/
39+ retention-days : 30
Original file line number Diff line number Diff line change 8080 "webpack-cli" : " ^5.1.4"
8181 },
8282 "engines" : {
83- "node" : " >= 22"
83+ "node" : " 22"
8484 },
8585 "volta" : {
8686 "node" : " 22.2.0"
You can’t perform that action at this time.
0 commit comments