We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c60f2e3 commit aec4958Copy full SHA for aec4958
.github/workflows/ci.yml
@@ -60,3 +60,18 @@ jobs:
60
- name: build and check generated types
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); }
63
+
64
+ Treeshaking:
65
+ runs-on: ubuntu-latest
66
+ timeout-minutes: 5
67
+ steps:
68
+ - uses: actions/checkout@v3
69
+ - uses: pnpm/[email protected]
70
+ - uses: actions/setup-node@v3
71
+ with:
72
+ node-version: 18
73
+ cache: pnpm
74
+ - name: install
75
+ run: pnpm install --frozen-lockfile
76
+ - name: check
77
+ run: cd packages/svelte && node scripts/check-treeshakeability.js
0 commit comments