File tree Expand file tree Collapse file tree 1 file changed +1
-30
lines changed Expand file tree Collapse file tree 1 file changed +1
-30
lines changed Original file line number Diff line number Diff line change @@ -75,40 +75,11 @@ jobs:
75
75
DOTENV_KEY : ${{ secrets.DOTENV_KEY }}
76
76
<%/env_vault % >
77
77
run : npm test --ignore-scripts
78
- - name : Weekly Integration Tests
78
+ - name : Weekly Integration Tests
79
79
if : github.event_name == 'schedule'
80
80
run : |
81
81
if npm run --silent | grep -q "test:integration"; then
82
82
npm run test:integration --ignore-scripts
83
83
else
84
84
echo "No integration tests to run, skipping..."
85
85
fi
86
- weekly_test :
87
- name : Weekly Full Test
88
- runs-on : ubuntu-latest
89
- if : github.event_name == 'schedule'
90
- defaults :
91
- run :
92
- shell : bash
93
- steps :
94
- - name : Checkout
95
- uses : actions/checkout@v3
96
- - name : Setup node
97
- uses : actions/setup-node@v3
98
- with :
99
- node-version : 18.x
100
- - name : Update npm
101
- run : npm i --prefer-online --no-fund --no-audit -g npm@latest
102
- - name : Install dependencies
103
- run : npm i --no-audit --no-fund
104
- - name : Check if test:full is defined
105
- id : check_test_full
106
- run : |
107
- if grep -q '"test:full":' package.json; then
108
- echo "::set-output name=exists::true"
109
- else
110
- echo "::set-output name=exists::false"
111
- fi
112
- - name : Run Full Test
113
- if : steps.check_test_full.outputs.exists == 'true'
114
- run : npm run test:full --ignore-scripts
You can’t perform that action at this time.
0 commit comments