Skip to content

Commit 8cf3883

Browse files
committed
ci: update GitHub workflows
1 parent 2048012 commit 8cf3883

File tree

15 files changed

+85
-81
lines changed

15 files changed

+85
-81
lines changed

.github/workflows/check.yml

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,25 @@ on:
66
pull_request:
77
types: [opened, edited, reopened, synchronize]
88
branches:
9-
- '**'
9+
- "**"
1010
merge_group:
1111
env:
12-
NODE_OPTIONS: --max_old_space_size=10240
12+
NODE_OPTIONS: --max_old_space_size=10240
1313
jobs:
14-
check:
15-
runs-on: ubuntu-latest
16-
steps:
17-
- uses: actions/checkout@v4
18-
- name: Setup node
19-
uses: actions/setup-node@v3
20-
with:
21-
node-version: 21
22-
- uses: pnpm/action-setup@v2
23-
name: Install pnpm
24-
id: pnpm-install
25-
with:
26-
version: 9
27-
run_install: false
28-
- name: Install front-end dependencies and build front-end assets
29-
run: pnpm install
30-
- name: Check
31-
run: pnpm run lint
14+
check:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Setup node
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: 22
22+
- uses: pnpm/action-setup@v2
23+
name: Install pnpm
24+
with:
25+
version: 9
26+
run_install: false
27+
- name: Install front-end dependencies and build front-end assets
28+
run: pnpm install
29+
- name: Check
30+
run: pnpm run lint

.github/workflows/publish.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
branches:
55
- main
66
tags-ignore:
7-
- '**'
7+
- "**"
88
paths-ignore:
9-
- '**/*.gitignore'
9+
- "**/*.gitignore"
1010
- .editorconfig
1111
- adrs/**
1212
- docs/**
@@ -23,16 +23,17 @@ jobs:
2323
id-token: write
2424
steps:
2525
- uses: actions/checkout@v3
26-
- uses: pnpm/action-setup@v2
2726
- name: Setup node
2827
uses: actions/setup-node@v3
2928
with:
30-
node-version: 21
29+
node-version: 22
3130
check-latest: true
32-
cache: 'pnpm'
33-
registry-url: 'https://registry.npmjs.org'
34-
- name: Install the latest npm
35-
run: npm install -g npm
31+
registry-url: "https://registry.npmjs.org"
32+
- uses: pnpm/action-setup@v2
33+
name: Install pnpm
34+
with:
35+
version: 9
36+
run_install: false
3637
- name: Install dependencies
3738
run: pnpm install
3839
- name: Run build

.github/workflows/test.yml

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,25 @@ on:
66
pull_request:
77
types: [opened, edited, reopened, synchronize]
88
branches:
9-
- '**'
9+
- "**"
1010
merge_group:
1111
env:
12-
NODE_OPTIONS: --max_old_space_size=10240
12+
NODE_OPTIONS: --max_old_space_size=10240
1313
jobs:
14-
test:
15-
runs-on: ubuntu-latest
16-
steps:
17-
- uses: actions/checkout@v4
18-
- name: Setup node
19-
uses: actions/setup-node@v3
20-
with:
21-
node-version: 21
22-
- uses: pnpm/action-setup@v2
23-
name: Install pnpm
24-
id: pnpm-install
25-
with:
26-
version: 9
27-
run_install: false
28-
- name: Install front-end dependencies and build front-end assets
29-
run: pnpm install
30-
- name: Test
31-
run: pnpm run test
14+
test:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Setup node
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: 22
22+
- uses: pnpm/action-setup@v2
23+
name: Install pnpm
24+
with:
25+
version: 9
26+
run_install: false
27+
- name: Install front-end dependencies and build front-end assets
28+
run: pnpm install
29+
- name: Test
30+
run: pnpm run test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"cspell": "8.8.4",
7373
"dedent": "1.5.3",
7474
"dprint": "0.46.2",
75-
"effect": "3.3.2",
75+
"effect": "3.3.3",
7676
"esbuild": "0.21.5",
7777
"eslint": "^9.5.0",
7878
"eslint-config-flat-gitignore": "0.1.5",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"valibot": "0.32.0"
5858
},
5959
"devDependencies": {
60-
"effect": "3.3.2",
60+
"effect": "3.3.3",
6161
"tsup": "8.1.0"
6262
}
6363
}

packages/plugins/eslint-plugin-react-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
},
6060
"devDependencies": {
6161
"dedent": "1.5.3",
62-
"effect": "3.3.2",
62+
"effect": "3.3.3",
6363
"tsup": "8.1.0"
6464
},
6565
"peerDependencies": {

packages/plugins/eslint-plugin-react-dom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
},
5858
"devDependencies": {
5959
"dedent": "1.5.3",
60-
"effect": "3.3.2",
60+
"effect": "3.3.3",
6161
"tsup": "8.1.0"
6262
},
6363
"peerDependencies": {

packages/plugins/eslint-plugin-react-hooks-extra/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
},
5959
"devDependencies": {
6060
"dedent": "1.5.3",
61-
"effect": "3.3.2",
61+
"effect": "3.3.3",
6262
"tsup": "8.1.0"
6363
},
6464
"peerDependencies": {

packages/plugins/eslint-plugin-react-naming-convention/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
},
5858
"devDependencies": {
5959
"dedent": "1.5.3",
60-
"effect": "3.3.2",
60+
"effect": "3.3.3",
6161
"tsup": "8.1.0"
6262
},
6363
"peerDependencies": {

packages/plugins/eslint-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"eslint-plugin-react-naming-convention": "workspace:*"
6666
},
6767
"devDependencies": {
68-
"effect": "3.3.2",
68+
"effect": "3.3.3",
6969
"tsup": "8.1.0"
7070
},
7171
"peerDependencies": {

0 commit comments

Comments
 (0)