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 8d2e7aa commit 827adeeCopy full SHA for 827adee
.github/workflows/test.yml
@@ -0,0 +1,37 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ svelte-version: [svelte3, svelte4, svelte5-legacy]
17
+ fail-fast: false
18
19
+ steps:
20
+ - name: Checkout repo
21
+ uses: actions/checkout@v5
22
23
+ - name: Setup Node.js
24
+ uses: actions/setup-node@v5
25
+ with:
26
+ node-version: 24
27
28
+ - name: Install dependencies
29
+ run: |
30
+ npm ci
31
+ cd tests/${{ matrix.svelte-version }}
32
+ npm install
33
34
+ - name: Run tests
35
36
37
+ npm test --no-watch
0 commit comments