File tree 2 files changed +11
-11
lines changed
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: CodeCheck
3
3
on :
4
4
push :
5
5
tags-ignore :
6
- - ' * '
6
+ - " * "
7
7
branches : [main]
8
8
paths-ignore :
9
- - ' **.md'
9
+ - " **.md"
10
10
pull_request :
11
11
types : [opened, synchronize, reopened]
12
12
@@ -15,11 +15,11 @@ jobs:
15
15
name : CodeCheck
16
16
runs-on : ubuntu-latest
17
17
steps :
18
- - uses : actions/checkout@v3
19
- - uses : actions/setup-node@v3
18
+ - uses : actions/checkout@v4
19
+ - uses : actions/setup-node@v4
20
20
with :
21
- node-version-file : ' .node-version'
22
- cache : ' npm'
21
+ node-version-file : " .node-version"
22
+ cache : " npm"
23
23
- run : npm ci
24
24
- name : prettier
25
25
run : npm run format
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ jobs:
19
19
id-token : write
20
20
21
21
steps :
22
- - uses : actions/checkout@v2
23
- - uses : actions/setup-node@v3
22
+ - uses : actions/checkout@v4
23
+ - uses : actions/setup-node@v4
24
24
with :
25
- node-version-file : ' .node-version'
26
- cache : ' npm'
27
- registry-url : ' https://registry.npmjs.org'
25
+ node-version-file : " .node-version"
26
+ cache : " npm"
27
+ registry-url : " https://registry.npmjs.org"
28
28
- run : npm ci
29
29
- name : building
30
30
run : npm run build
You can’t perform that action at this time.
0 commit comments