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