aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 0c31b73fc..03b925701 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -4,7 +4,7 @@ on:
4 push: 4 push:
5 pull_request: 5 pull_request:
6 schedule: 6 schedule:
7 - cron: '0 0 * * 1-5' 7 - cron: '0 3 * * 1-5'
8 8
9jobs: 9jobs:
10 10
@@ -75,9 +75,10 @@ jobs:
75 if: github.event_name != 'schedule' 75 if: github.event_name != 'schedule'
76 run: | 76 run: |
77 echo "::set-env name=DISABLE_HTTP_IMPORT_TESTS::true" 77 echo "::set-env name=DISABLE_HTTP_IMPORT_TESTS::true"
78 echo "::set-env name=DISABLE_EXTERNAL_PLUGINS_TESTS::true"
79 78
80 - name: Run Test 79 - name: Run Test
80 # external-plugins tests only run on schedule
81 if: github.event_name == 'schedule' || matrix.test_suite != 'external-plugins'
81 run: NODE_PENDING_JOB_WAIT=2000 npm run ci -- ${{ matrix.test_suite }} 82 run: NODE_PENDING_JOB_WAIT=2000 npm run ci -- ${{ matrix.test_suite }}
82 83
83 - name: Upload logs 84 - name: Upload logs