You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+2-18
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ jobs:
32
32
strategy:
33
33
matrix:
34
34
# pseudo-matrix for convenience, NEVER use more than a single combination
35
-
node: [16]
35
+
node: [18]
36
36
os: [ubuntu-latest]
37
37
steps:
38
38
- uses: actions/checkout@v4
@@ -73,16 +73,10 @@ jobs:
73
73
strategy:
74
74
fail-fast: false
75
75
matrix:
76
-
node: [16]
76
+
node: [18]
77
77
os: [ubuntu-latest, macos-latest, windows-latest]
78
78
svelte: [4]
79
79
include:
80
-
- node: 14
81
-
os: ubuntu-latest
82
-
svelte: 3
83
-
- node: 18
84
-
os: ubuntu-latest
85
-
svelte: 4
86
80
- node: 20
87
81
os: ubuntu-latest
88
82
svelte: 4
@@ -92,17 +86,11 @@ jobs:
92
86
with:
93
87
node-version: ${{ matrix.node }}
94
88
- name: install pnpm
95
-
if: matrix.node != 14
96
89
shell: bash
97
90
run: |
98
91
PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json)
0 commit comments