File tree 9 files changed +30
-56
lines changed
9 files changed +30
-56
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "env" : {
3
- "commonjs" : true ,
4
- "es6" : true ,
5
- "jest" : true ,
6
- "node" : true
7
- },
8
- "extends" : " eslint:recommended" ,
9
- "globals" : {
10
- "Atomics" : " readonly" ,
11
- "SharedArrayBuffer" : " readonly"
12
- },
13
- "parserOptions" : {
14
- "ecmaVersion" : 2020 ,
15
- "sourceType" : " module"
16
- },
17
- "rules" : {
18
- }
2
+ "env" : {
3
+ "commonjs" : true ,
4
+ "es6" : true ,
5
+ "jest" : true ,
6
+ "node" : true
7
+ },
8
+ "extends" : " eslint:recommended" ,
9
+ "globals" : {
10
+ "Atomics" : " readonly" ,
11
+ "SharedArrayBuffer" : " readonly"
12
+ },
13
+ "parserOptions" : {
14
+ "ecmaVersion" : 2020 ,
15
+ "sourceType" : " module"
16
+ },
17
+ "rules" : {}
19
18
}
Original file line number Diff line number Diff line change 1
- dist /** - diff linguist-generated =true
1
+ dist /** - diff linguist-generated =true
Original file line number Diff line number Diff line change 25
25
language : [ 'javascript' ]
26
26
27
27
steps :
28
- - uses : actions/checkout@v3.5.0
28
+ - uses : actions/checkout@v3
29
29
30
30
- name : Initialize CodeQL
31
31
uses : github/codeql-action/init@v2
Original file line number Diff line number Diff line change @@ -13,19 +13,12 @@ jobs:
13
13
lint :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v3.5.0
17
-
18
- # check the node version from the .node-version file
19
- - name : fetch node version
20
- id : node-version
21
- run : |
22
- version=$(cat .node-version)
23
- echo "version=${version}" >> $GITHUB_OUTPUT
16
+ - uses : actions/checkout@v3
24
17
25
18
- name : setup node
26
- uses : actions/setup-node@v3.6.0
19
+ uses : actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@ v3.6.0
27
20
with :
28
- node-version : ${{ steps .node-version.outputs.version }}
21
+ node-version-file : .node-version
29
22
cache : ' npm'
30
23
31
24
- name : install dependencies
Original file line number Diff line number Diff line change 15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
# Need to checkout for testing the Action in this repo
18
- - uses : actions/checkout@v3.5.0
18
+ - uses : actions/checkout@v3
19
19
20
20
# Lock
21
21
- uses : ./
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
- paths-ignore :
8
- - " **.md"
9
7
pull_request :
10
- paths-ignore :
11
- - " **.md"
12
8
workflow_dispatch :
13
9
14
10
permissions :
@@ -19,19 +15,12 @@ jobs:
19
15
runs-on : ubuntu-latest
20
16
21
17
steps :
22
- - uses : actions/checkout@v3.5.0
23
-
24
- # check the node version from the .node-version file
25
- - name : fetch node version
26
- id : node-version
27
- run : |
28
- version=$(cat .node-version)
29
- echo "version=${version}" >> $GITHUB_OUTPUT
18
+ - uses : actions/checkout@v3
30
19
31
20
- name : setup node
32
- uses : actions/setup-node@v3.6.0
21
+ uses : actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@ v3.6.0
33
22
with :
34
- node-version : ${{ steps .node-version.outputs.version }}
23
+ node-version-file : .node-version
35
24
cache : ' npm'
36
25
37
26
- name : install dependencies
Original file line number Diff line number Diff line change @@ -13,19 +13,12 @@ jobs:
13
13
test :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v3.5.0
17
-
18
- # check the node version from the .node-version file
19
- - name : fetch node version
20
- id : node-version
21
- run : |
22
- version=$(cat .node-version)
23
- echo "version=${version}" >> $GITHUB_OUTPUT
16
+ - uses : actions/checkout@v3
24
17
25
18
- name : setup node
26
- uses : actions/setup-node@v3.6.0
19
+ uses : actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@ v3.6.0
27
20
with :
28
- node-version : ${{ steps .node-version.outputs.version }}
21
+ node-version-file : .node-version
29
22
cache : ' npm'
30
23
31
24
- name : install dependencies
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
# Need to checkout for testing the Action in this repo
14
- - uses : actions/checkout@v3.5.0
14
+ - uses : actions/checkout@v3
15
15
16
16
# Lock
17
17
- uses : ./
Original file line number Diff line number Diff line change 1
1
dist /
2
2
lib /
3
- node_modules /
3
+ node_modules /
You can’t perform that action at this time.
0 commit comments