Skip to content

Commit 0c052a1

Browse files
authored
chore(.gitignore-sync): ignore fixtures lockfiles to avoid renovate errors (#1110)
1 parent 8a89683 commit 0c052a1

File tree

6 files changed

+6
-785
lines changed

6 files changed

+6
-785
lines changed

.github/workflows/e2e.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
run: echo "hash=${{ hashFiles('tests/e2e/fixtures/**/*', 'tests/e2e/conversion.test.ts') }}" >> "${GITHUB_OUTPUT}"
192192

193193
- name: Install E2E Test Fixtures Dependencies
194-
run: bun install --frozen-lockfile
194+
run: bun install --save-text-lockfile
195195
working-directory: tests/e2e/fixtures
196196

197197
- name: Restore Snapshots Cache

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ dist
184184
playwright-report/
185185
test-results/
186186
tests/e2e/conversion.test.ts-snapshots/
187+
tests/e2e/fixtures/bun.lock
187188

188189
# Windows thumbnail cache files
189190
Thumbs.db

.gitignore-sync

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ playwright-report/
1010
test-results/
1111
# ignore snapshots generated in CI
1212
tests/e2e/conversion.test.ts-snapshots/
13+
# ignore fixtures bun lockfile because Renovate cannot update lockfile with linked dependencies
14+
tests/e2e/fixtures/bun.lock
1315

1416
[github/gitignore]
1517
Global/Windows.gitignore

cspell.config.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = {
1515
".git/",
1616
// ignore auto-generated files
1717
".gitignore",
18-
"bun.lockb",
18+
"bun.lock",
1919
// ignore license files
2020
"LICENSE",
2121
// ignore binary files

tasks.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ run = "bun run playwright test vrt --update-snapshots"
2323

2424
["test:e2e:fixtures:server"]
2525
depends = ["build"]
26-
run = ["bun install --frozen-lockfile", "bun run build", "bun run preview"]
26+
run = ["bun install --save-text-lockfile", "bun run build", "bun run preview"]
2727
dir = "tests/e2e/fixtures"
2828

2929
["test:e2e:fixtures:remove-symlinks"]

0 commit comments

Comments
 (0)