File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 5555 run : echo "::add-matcher::.github/matchers/tap.json"
5656 - name : Test
5757 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
Original file line number Diff line number Diff line change 7575 DOTENV_KEY : ${{ secrets.DOTENV_KEY }}
7676 <%/env_vault % >
7777 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
You can’t perform that action at this time.
0 commit comments