We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3b9818 commit 3f7ae6dCopy full SHA for 3f7ae6d
.github/workflows/ci.yml
@@ -55,3 +55,11 @@ jobs:
55
run: echo "::add-matcher::.github/matchers/tap.json"
56
- name: Test
57
run: npm test --ignore-scripts
58
+ - name: Weekly Integration Tests
59
+ if: github.event_name == 'schedule'
60
+ run: |
61
+ if npm run --silent | grep -q "test:integration"; then
62
+ npm run test:integration --ignore-scripts
63
+ else
64
+ echo "No integration tests to run, skipping..."
65
+ fi
0 commit comments