File tree 9 files changed +27452
-7396
lines changed 9 files changed +27452
-7396
lines changed Original file line number Diff line number Diff line change 9
9
test :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
13
- - run : yarn install
14
- - run : yarn build
15
- - run : yarn test
12
+ - uses : actions/checkout@v4
13
+
14
+ - name : Install pnpm
15
+ uses : pnpm/action-setup@v2
16
+
17
+ - name : Set node version to 20
18
+ uses : actions/setup-node@v4
19
+ with :
20
+ node-version : 20
21
+
22
+ - name : Install & Build
23
+ run : |
24
+ pnpm install
25
+ pnpm build
26
+
27
+ - name : Test
28
+ run : |
29
+ pnpm typecheck
30
+ pnpm lint
31
+ pnpm test
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
name : Update dist/index.js
11
11
steps :
12
- - uses : actions/checkout@v2
13
- - run : yarn install
14
- - run : yarn build
12
+ - uses : actions/checkout@v4
13
+
14
+ - name : Install pnpm
15
+ uses : pnpm/action-setup@v2
16
+
17
+ - name : Set node version to 20
18
+ uses : actions/setup-node@v4
19
+ with :
20
+ node-version : 20
21
+
22
+ - name : Install & Build
23
+ run : |
24
+ pnpm install
25
+ pnpm build
26
+
15
27
- name : Push updates
16
28
uses : stefanzweifel/git-auto-commit-action@v4
17
29
with :
18
- commit_message : " chore(build): update dist/index.js"
30
+ commit_message : ' chore(build): update dist/index.js'
You can’t perform that action at this time.
0 commit comments