File tree Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Lint
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ lint :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Checkout
10
+ uses : actions/checkout@v4
11
+
12
+ - uses : pnpm/action-setup@v4
13
+ with :
14
+ version : 9
15
+
16
+ - name : Setup Node.js 18.x
17
+ uses : actions/setup-node@v4
18
+ with :
19
+ node-version : 18.x
20
+
21
+ - name : Install Dependencies
22
+ run : pnpm i
23
+
24
+ - name : Lint
25
+ run : pnpm lint
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@v3
16
+ with :
17
+ fetch-depth : 0
18
+
19
+ - uses : actions/setup-node@v3
20
+ with :
21
+ node-version : 18.19.0
22
+
23
+ - run : npx changelogithub
24
+ env :
25
+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
You can’t perform that action at this time.
0 commit comments