Skip to content

Commit ad0593a

Browse files
corepack
1 parent b30aee5 commit ad0593a

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
test:
11-
name: Run Playwright tests
11+
name: Playwright
1212
timeout-minutes: 5
1313
runs-on: ubuntu-latest
1414
steps:
@@ -17,7 +17,7 @@ jobs:
1717
run: corepack enable
1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 20.x
20+
node-version: 22.x
2121
cache: 'pnpm'
2222

2323
- run: pnpm install

.github/workflows/quality.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ on:
88

99
jobs:
1010
lint:
11-
name: Run Linter
11+
name: Lint
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Enable corepack
1616
run: corepack enable
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 20.x
19+
node-version: 22.x
2020
cache: 'pnpm'
2121

2222
- run: pnpm install
@@ -26,15 +26,15 @@ jobs:
2626
- run: pnpm lint
2727

2828
check:
29-
name: Run Type Check
29+
name: Type Check
3030
runs-on: ubuntu-latest
3131
steps:
3232
- uses: actions/checkout@v4
3333
- name: Enable corepack
3434
run: corepack enable
3535
- uses: actions/setup-node@v4
3636
with:
37-
node-version: 20.x
37+
node-version: 22.x
3838
cache: 'pnpm'
3939

4040
- run: pnpm install

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ jobs:
1212
name: Release
1313
runs-on: ubuntu-latest
1414
steps:
15-
- name: Checkout
16-
uses: actions/checkout@v4
15+
- uses: actions/checkout@v4
1716

18-
- name: Setup pnpm
19-
uses: pnpm/action-setup@v2
17+
- name: Enable corepack
18+
run: corepack enable
2019

2120
- uses: actions/setup-node@v4
2221
with:
23-
node-version-file: '.node-version'
22+
node-version: 22.x
2423
cache: 'pnpm'
2524

26-
- name: Install Dependencies
27-
run: pnpm install
25+
- run: pnpm install
26+
env:
27+
CI: true
2828

2929
- name: Create Release Pull Request or Publish to npm
3030
id: changesets

.github/workflows/unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ on:
88

99
jobs:
1010
test:
11-
name: Run Unit Tests
11+
name: Unit Tests
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Enable corepack
1616
run: corepack enable
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 20.x
19+
node-version: 22.x
2020
cache: 'pnpm'
2121

2222
- run: pnpm install

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"url": "git+https://github.com/elliott-with-the-longest-name-on-github/svelte-themes.git"
2828
},
2929
"engines": {
30-
"node": ">=20",
30+
"node": ">=22",
3131
"pnpm": ">=9"
3232
},
3333
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",

0 commit comments

Comments
 (0)