We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 49b3a23 + 3f7ae6d commit 94a317cCopy full SHA for 94a317c
2 files changed
.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
lib/content/ci.yml
@@ -75,3 +75,11 @@ jobs:
75
DOTENV_KEY: ${{ secrets.DOTENV_KEY }}
76
<%/env_vault%>
77
78
79
80
81
82
83
84
85
0 commit comments