File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 59
59
run : pnpm lint
60
60
- name : build and check generated types
61
61
if : (${{ success() }} || ${{ failure() }}) # ensures this step runs even if previous steps fail
62
- run : pnpm build && { [ "`git status --porcelain=v1`" == "" ] || (echo "Generated types have changed — please regenerate types locally and commit the changes after you have reviewed them"; git diff; exit 1); }
62
+ run : pnpm build && { [ "`git status --porcelain=v1`" == "" ] || (echo "Generated types have changed — please regenerate types locally with `cd packages/svelte && pnpm generate:types` and commit the changes after you have reviewed them"; git diff; exit 1); }
63
63
Benchmarks :
64
64
runs-on : ubuntu-latest
65
65
timeout-minutes : 15
Original file line number Diff line number Diff line change 33
33
run : pnpm install --frozen-lockfile
34
34
35
35
- name : Build
36
- run : pnpm build && { [ "`git status --porcelain=v1`" == "" ] || (echo "Generated types have changed — please regenerate types locally and commit the changes after you have reviewed them"; git diff; exit 1); }
36
+ run : pnpm build && { [ "`git status --porcelain=v1`" == "" ] || (echo "Generated types have changed — please regenerate types locally with `cd packages/svelte && pnpm generate:types` and commit the changes after you have reviewed them"; git diff; exit 1); }
37
37
38
38
- name : Create Release Pull Request or Publish to npm
39
39
id : changesets
You can’t perform that action at this time.
0 commit comments