Skip to content

Commit a3a0ab1

Browse files
committed
Refresh package-lock.json
1 parent fbcfcc3 commit a3a0ab1

File tree

2 files changed

+737
-157
lines changed

2 files changed

+737
-157
lines changed

.github/workflows/examples-tests.yaml

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,29 @@ name: examples-test
99
#
1010

1111
# run this on push to any branch and creation of pull-requests
12-
on:
12+
on:
1313
push:
1414
paths:
15-
- 'examples/**'
16-
- 'tests/**'
15+
- "examples/**"
16+
- "tests/**"
1717
pull_request:
1818
paths:
19-
- 'examples/**'
20-
- 'tests/**'
19+
- "examples/**"
20+
- "tests/**"
2121
workflow_dispatch: {}
2222

2323
jobs:
2424
test:
25-
2625
runs-on: ubuntu-latest
2726

2827
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

0 commit comments

Comments
 (0)