File tree Expand file tree Collapse file tree 6 files changed +1583
-1532
lines changed
Expand file tree Collapse file tree 6 files changed +1583
-1532
lines changed Original file line number Diff line number Diff line change 11name : Playwright Tests
22on :
33 push :
4- branches : [ main, master ]
4+ branches : [ main ]
55 pull_request :
6- branches : [ main, master ]
6+ branches : [ main ]
77jobs :
88 test :
99 timeout-minutes : 60
Original file line number Diff line number Diff line change @@ -32,17 +32,15 @@ jobs:
3232 github.event.review.state == 'approved')
3333 runs-on : ubuntu-latest
3434 steps :
35- - uses : actions/checkout@v2
36- with :
37- token : ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }} # required otherwise GitHub blocks infinite loops in pushes originating in an action
35+ - uses : actions/checkout@v4
3836 if : github.actor != 'dependabot[bot]'
39- - uses : actions/checkout@v2
37+ - uses : actions/checkout@v4
4038 if : github.actor == 'dependabot[bot]'
41- - uses : actions/cache@v2
39+ - uses : actions/cache@v4
4240 with :
4341 path : ~/.npm
4442 key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
4543 restore-keys : |
4644 ${{ runner.os }}-node
4745 - run : npm i
48- - run : npm run test:jest
46+ # no tests yet - run: npm run test:jest
Original file line number Diff line number Diff line change 1- # Ignore node_modules in all subdirectories of samples/
2- samples / ** /node_modules /
1+ # Ignore all node_modules including in subdirectories for samples/
2+ ** /node_modules /
33samples /.env
4- node_modules /
4+
5+ # (temporary) Ignore dist files generated by build
6+ ** /dist /
7+
8+ # Ignore playwright outputs
9+ /test-results /
10+ /playwright-report /
11+ /blob-report /
12+ /playwright /.cache /
You can’t perform that action at this time.
0 commit comments