File tree Expand file tree Collapse file tree 2 files changed +737
-157
lines changed Expand file tree Collapse file tree 2 files changed +737
-157
lines changed Original file line number Diff line number Diff line change @@ -9,31 +9,29 @@ name: examples-test
9
9
#
10
10
11
11
# run this on push to any branch and creation of pull-requests
12
- on :
12
+ on :
13
13
push :
14
14
paths :
15
- - ' examples/**'
16
- - ' tests/**'
15
+ - " examples/**"
16
+ - " tests/**"
17
17
pull_request :
18
18
paths :
19
- - ' examples/**'
20
- - ' tests/**'
19
+ - " examples/**"
20
+ - " tests/**"
21
21
workflow_dispatch : {}
22
22
23
23
jobs :
24
24
test :
25
-
26
25
runs-on : ubuntu-latest
27
26
28
27
steps :
29
- - uses : actions/checkout@v4 # checkout repo content
30
- with :
31
- fetch-depth : 0
32
- - uses : actions/setup-node@v4 # setup Node.js
33
- with :
34
- node-version : ' 20.x'
35
- - name : Install dependencies
36
- run : npm install
37
- - name : Run tests
38
- run : npm test
39
-
28
+ - uses : actions/checkout@v4 # checkout repo content
29
+ with :
30
+ fetch-depth : 0
31
+ - uses : actions/setup-node@v4 # setup Node.js
32
+ with :
33
+ node-version : " 20.x"
34
+ - name : Install dependencies
35
+ run : npm ci
36
+ - name : Run tests
37
+ run : npm test
You can’t perform that action at this time.
0 commit comments