File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -20,24 +20,26 @@ jobs:
20
20
runs-on : ${{ matrix.os }}
21
21
steps :
22
22
- name : Checkout Repo
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
25
25
- name : Enable Corepack
26
26
run : corepack enable
27
27
28
28
- name : Setup Node.js ${{ matrix.node }}
29
- uses : actions/setup-node@v3
29
+ uses : actions/setup-node@v4
30
30
with :
31
31
node-version : ${{ matrix.node }}
32
32
cache : yarn
33
33
env :
34
34
# https://github.com/actions/setup-node/issues/531#issuecomment-1819151412
35
35
SKIP_YARN_COREPACK_CHECK : 1
36
+ YARN_IGNORE_NODE : 1
36
37
37
38
- name : Install Dependencies
38
39
run : yarn --immutable
39
40
env :
40
41
SKIP_YARN_COREPACK_CHECK : 1
42
+ YARN_IGNORE_NODE : 1
41
43
42
44
- name : Build, Lint and Test
43
45
run : |
47
49
EFF_NO_LINK_RULES : true
48
50
PARSER_NO_WATCH : true
49
51
SKIP_YARN_COREPACK_CHECK : 1
52
+ YARN_IGNORE_NODE : 1
50
53
51
54
- name : Codecov
52
55
uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change 23
23
24
24
steps :
25
25
- name : Checkout
26
- uses : actions/checkout@v3
26
+ uses : actions/checkout@v4
27
27
28
28
- name : Initialize CodeQL
29
29
uses : github/codeql-action/init@v3
Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ jobs:
12
12
13
13
steps :
14
14
- name : Checkout
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
17
17
- name : Enable Corepack
18
18
run : corepack enable
19
19
20
20
- name : Setup Node.js LTS
21
21
uses : actions/setup-node@v4
22
22
with :
23
- node-version : 16
23
+ node-version : lts/*
24
24
cache : yarn
25
25
env :
26
26
# https://github.com/actions/setup-node/issues/531#issuecomment-1819151412
Original file line number Diff line number Diff line change 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
22
22
- name : Setup Node.js LTS
23
23
uses : actions/setup-node@v4
24
24
with :
25
- node-version : 16
25
+ node-version : lts/*
26
26
cache : yarn
27
27
env :
28
28
# https://github.com/actions/setup-node/issues/531#issuecomment-1819151412
You can’t perform that action at this time.
0 commit comments