File tree Expand file tree Collapse file tree 4 files changed +23
-44
lines changed Expand file tree Collapse file tree 4 files changed +23
-44
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ name: autofix.ci
3
3
on :
4
4
pull_request :
5
5
push :
6
- branches : ['main']
7
6
8
7
permissions :
9
8
contents : read
15
14
- uses : actions/checkout@v4
16
15
- run : npm i -fg corepack && corepack enable
17
16
- uses : actions/setup-node@v4
18
- with :
19
- node-version : 24
20
- cache : ' pnpm'
17
+ with : { node-version: 24, cache: 'pnpm' }
21
18
- run : pnpm install
22
19
- run : pnpm lint:fix
23
20
- run : pnpm automd
24
21
- uses : autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
25
- with :
26
- commit-message : ' chore: apply automated updates'
22
+ with : { commit-message: 'chore: apply automated updates' }
Original file line number Diff line number Diff line change
1
+ name : checks
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+
7
+ jobs :
8
+ checks :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v4
12
+ - run : npm i -fg corepack && corepack enable
13
+ - uses : actions/setup-node@v4
14
+ with : { node-version: 24, cache: 'pnpm' }
15
+ - run : pnpm install
16
+ - run : pnpm run lint
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 6
6
push :
7
7
branches :
8
8
- main
9
- # tags:
10
- # - 'v*'
11
9
12
10
permissions :
13
11
id-token : write # Required for OIDC
@@ -17,15 +15,11 @@ jobs:
17
15
publish :
18
16
runs-on : ubuntu-latest
19
17
steps :
20
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
21
- with :
22
- fetch-depth : 0
18
+ - uses : actions/checkout@v4
19
+ with : { fetch-depth: 0 }
23
20
- run : npm i -fg corepack && corepack enable
24
21
- uses : actions/setup-node@v4
25
- with :
26
- node-version : 24
27
- cache : ' pnpm'
28
-
29
- - run : corepack enable && pnpm install
22
+ with : { node-version: 24, cache: 'pnpm' }
23
+ - run : pnpm install
30
24
- name : publish
31
- run : pnpm changelogen --canary nightly --bump && npm publish --tag main
25
+ run : pnpm changelogen --canary nightly --release --tag main
You can’t perform that action at this time.
0 commit comments