Skip to content

Commit 5a968bb

Browse files
committed
fix: added next file, and updated CI
1 parent 9fac7c0 commit 5a968bb

File tree

3 files changed

+8
-24
lines changed

3 files changed

+8
-24
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -78,27 +78,3 @@ jobs:
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/

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ yarn-error.log*
2121
# local scratch files
2222
t.py
2323
todo.md
24+
25+
# keep these files
26+
!next-env.d.ts
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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.

0 commit comments

Comments
 (0)