File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : autofix.ci
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ pull_request :
9+ branches :
10+ - main
11+
12+ merge_group : {}
13+
14+ jobs :
15+ lint :
16+ runs-on : ubuntu-latest
17+ steps :
18+ - uses : actions/checkout@v6
19+
20+ - name : Install pnpm
21+ uses : pnpm/action-setup@v4
22+
23+ - name : Set node
24+ uses : actions/setup-node@v6
25+ with :
26+ registry-url : https://registry.npmjs.org/
27+ node-version : lts/*
28+
29+ - name : Install
30+ run : pnpm i
31+
32+ - name : Lint
33+ run : pnpm lint --fix
34+
35+ - uses : autofix-ci/action@v1.3
Original file line number Diff line number Diff line change 1+ name : Continuous Releases
2+ on :
3+ push :
4+ branches :
5+ - main
6+ - v**
7+ pull_request :
8+ types :
9+ - opened
10+ - synchronize
11+
12+ jobs :
13+ publish :
14+ runs-on : ubuntu-latest
15+ steps :
16+ - uses : actions/checkout@v6
17+
18+ - name : Install pnpm
19+ uses : pnpm/action-setup@v4
20+
21+ - name : Set node
22+ uses : actions/setup-node@v6
23+ with :
24+ registry-url : https://registry.npmjs.org/
25+ node-version : lts/*
26+
27+ - name : Install
28+ run : pnpm i
29+
30+ - name : Build
31+ run : pnpm build
32+
33+ - name : Publish packages
34+ run : pnpx pkg-pr-new publish --compact --pnpm
Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ permissions :
4+ contents : write
5+
6+ on :
7+ push :
8+ tags :
9+ - ' v*'
10+
11+ jobs :
12+ release :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v6
16+ with :
17+ fetch-depth : 0
18+
19+ - name : Install pnpm
20+ uses : pnpm/action-setup@v4
21+
22+ - name : Set node
23+ uses : actions/setup-node@v6
24+ with :
25+ registry-url : https://registry.npmjs.org/
26+ node-version : lts/*
27+
28+ - run : npx changelogithub
29+ env :
30+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
You can’t perform that action at this time.
0 commit comments