File tree Expand file tree Collapse file tree 3 files changed +8
-24
lines changed
packages/core/__tests__/fixtures/next Expand file tree Collapse file tree 3 files changed +8
-24
lines changed Original file line number Diff line number Diff line change 7878
7979 - name : Run CLI tests
8080 run : pnpm test:cli
81-
82- # 8 ▸ Ensure repo is clean (tar-ball didn't dirty fixtures)
83- - name : Verify clean git tree
84- run : |
85- if [[ -n $(git status --porcelain) ]]; then
86- echo "::error::Git tree dirty after tests"
87- git status --porcelain
88- exit 1
89- fi
90-
91- # 9 ▸ Upload Playwright traces & junit on failure
92- - name : Upload Playwright traces
93- if : failure()
94- uses : actions/upload-artifact@v4
95- with :
96- name : playwright-traces
97- path : packages/core/__tests__/test-results/
98-
99- - name : Upload unit snapshots
100- if : failure()
101- uses : actions/upload-artifact@v4
102- with :
103- name : unit-snapshots
104- path : packages/core/__tests__/snapshots/
Original file line number Diff line number Diff line change @@ -21,3 +21,6 @@ yarn-error.log*
2121# local scratch files
2222t.py
2323todo.md
24+
25+ # keep these files
26+ ! next-env.d.ts
Original file line number Diff line number Diff line change 1+ /// <reference types="next" />
2+ /// <reference types="next/image-types/global" />
3+
4+ // NOTE: This file should not be edited
5+ // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
You can’t perform that action at this time.
0 commit comments