Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,16 @@ jobs:
- run: node --experimental-strip-types ./internal/lsp/lsproto/_generate/generate.mts

- name: Regenerate fourslash tests and update failing test list
run: npm run updatefailing
run: |
echo "" > ./internal/fourslash/_scripts/failingTests.txt
npm run convertfourslash || true
npx hereby test || true
npx hereby baseline-accept || true
npm run updatefailing || true
npx hereby baseline-accept || true
rm -rf testdata/baselines/reference/fourslash || true
npx hereby test || true
npx hereby baseline-accept || true

- run: git add .
- run: git diff --staged --exit-code --stat
Expand Down
Loading