File tree 6 files changed +21
-24
lines changed
6 files changed +21
-24
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "node" : " 16 " ,
2
+ "node" : " 18 " ,
3
3
"sandboxes" : []
4
4
}
Original file line number Diff line number Diff line change @@ -17,15 +17,13 @@ jobs:
17
17
- ubuntu-latest
18
18
runs-on : ${{ matrix.os }}
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
22
22
- name : Setup pnpm
23
23
uses : pnpm/action-setup@v2
24
- with :
25
- version : latest
26
24
27
25
- name : Setup Node.js ${{ matrix.node }}
28
- uses : actions/setup-node@v3
26
+ uses : actions/setup-node@v4
29
27
with :
30
28
node-version : ${{ matrix.node }}
31
29
cache : pnpm
Original file line number Diff line number Diff line change 1
- name : " CodeQL"
1
+ name : CodeQL
2
2
3
3
on :
4
4
push :
5
- branches : [ "master" ]
5
+ branches :
6
+ - master
6
7
pull_request :
7
- branches : [ "master" ]
8
+ branches :
9
+ - master
8
10
schedule :
9
- - cron : " 16 11 * * 2"
11
+ - cron : ' 16 11 * * 2'
10
12
11
13
jobs :
12
14
analyze :
@@ -20,11 +22,12 @@ jobs:
20
22
strategy :
21
23
fail-fast : false
22
24
matrix :
23
- language : [ javascript ]
25
+ language :
26
+ - javascript
24
27
25
28
steps :
26
29
- name : Checkout
27
- uses : actions/checkout@v3
30
+ uses : actions/checkout@v4
28
31
29
32
- name : Initialize CodeQL
30
33
uses : github/codeql-action/init@v2
38
41
- name : Perform CodeQL Analysis
39
42
uses : github/codeql-action/analyze@v2
40
43
with :
41
- category : " /language:${{ matrix.language }}"
44
+ category : ' /language:${{ matrix.language }}'
Original file line number Diff line number Diff line change @@ -11,27 +11,25 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout Repo
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
with :
16
16
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
17
17
fetch-depth : 0
18
18
19
19
- name : Setup pnpm
20
20
uses : pnpm/action-setup@v2
21
- with :
22
- version : latest
23
21
24
- - name : Setup Node.js 16
25
- uses : actions/setup-node@v3
22
+ - name : Setup Node.js LTS
23
+ uses : actions/setup-node@v4
26
24
with :
27
- node-version : 16
25
+ node-version : lts/*
28
26
cache : pnpm
29
27
30
28
- name : Install Dependencies
31
29
run : pnpm i
32
30
33
31
- name : Build
34
- run : yarn build
32
+ run : pnpm build
35
33
36
34
- name : Create Release Pull Request or Publish to npm
37
35
id : changesets
Original file line number Diff line number Diff line change @@ -13,15 +13,13 @@ jobs:
13
13
size-limit :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
18
18
- name : Setup pnpm
19
19
uses : pnpm/action-setup@v2
20
- with :
21
- version : latest
22
20
23
21
- name : Setup Node.js LTS
24
- uses : actions/setup-node@v3
22
+ uses : actions/setup-node@v4
25
23
with :
26
24
node-version : lts/*
27
25
cache : pnpm
Original file line number Diff line number Diff line change 1
- 16
1
+ 18
You can’t perform that action at this time.
0 commit comments