Skip to content

Commit fbcfcc3

Browse files
authored
Merge pull request #117 from ralfhandl/fix-tests
Fix validation of examples
2 parents c5e3673 + 7121ed6 commit fbcfcc3

File tree

5 files changed

+348
-1104
lines changed

5 files changed

+348
-1104
lines changed

.github/workflows/examples-tests.yaml

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ on:
1313
push:
1414
paths:
1515
- 'examples/**'
16+
- 'tests/**'
1617
pull_request:
1718
paths:
1819
- 'examples/**'
20+
- 'tests/**'
1921
workflow_dispatch: {}
2022

2123
jobs:
@@ -30,8 +32,8 @@ jobs:
3032
- uses: actions/setup-node@v4 # setup Node.js
3133
with:
3234
node-version: '20.x'
33-
- name: Install dependencies from main
34-
run: npm ci
35+
- name: Install dependencies
36+
run: npm install
3537
- name: Run tests
36-
run: npm run test
38+
run: npm test
3739

0 commit comments

Comments
 (0)