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 55
55
run : echo "::add-matcher::.github/matchers/tap.json"
56
56
- name : Test
57
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
Original file line number Diff line number Diff line change 75
75
DOTENV_KEY : ${{ secrets.DOTENV_KEY }}
76
76
<%/env_vault % >
77
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
You can’t perform that action at this time.
0 commit comments