Skip to content

Commit a3b9818

Browse files
committed
remove new job and adapt existing one
1 parent 143c709 commit a3b9818

File tree

1 file changed

+1
-30
lines changed

1 file changed

+1
-30
lines changed

lib/content/ci.yml

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -75,40 +75,11 @@ jobs:
7575
DOTENV_KEY: ${{ secrets.DOTENV_KEY }}
7676
<%/env_vault%>
7777
run: npm test --ignore-scripts
78-
- name: Weekly Integration Tests
78+
- name: Weekly Integration Tests
7979
if: github.event_name == 'schedule'
8080
run: |
8181
if npm run --silent | grep -q "test:integration"; then
8282
npm run test:integration --ignore-scripts
8383
else
8484
echo "No integration tests to run, skipping..."
8585
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

0 commit comments

Comments
 (0)