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 1aeec1c commit 143c709Copy full SHA for 143c709
lib/content/ci.yml
@@ -75,7 +75,14 @@ jobs:
75
DOTENV_KEY: ${{ secrets.DOTENV_KEY }}
76
<%/env_vault%>
77
run: npm test --ignore-scripts
78
-
+ - name: Weekly Integration Tests
79
+ if: github.event_name == 'schedule'
80
+ run: |
81
+ if npm run --silent | grep -q "test:integration"; then
82
+ npm run test:integration --ignore-scripts
83
+ else
84
+ echo "No integration tests to run, skipping..."
85
+ fi
86
weekly_test:
87
name: Weekly Full Test
88
runs-on: ubuntu-latest
0 commit comments