Skip to content

Commit

Permalink
different approach; split step into multiple
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamKing0126 committed Dec 18, 2023
1 parent 7c70770 commit f8a974b
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,26 @@ jobs:
max_attempts: 3
timeout_minutes: 15

- name: Install dependencies and build content-build
- name: Install dependencies
uses: nick-invision/retry@v2
with:
command: cd content-build && cp .env.example .env && yarn --frozen-lockfile --prefer-offline
max_attempts: 3
timeout_minutes: 15

- name: Fetch Drupal cache
uses: nick-invision/retry@v2
with:
command: cd content-build && cp .env.example .env && yarn --frozen-lockfile --prefer-offline && yarn fetch-drupal-cache && yarn build
command: cd content-build && yarn fetch-drupal-cache
max_attempts: 3
timeout_minutes: 45
timeout_minutes: 15

- name: Build content-build
uses: nick-invision/retry@v2
with:
command: cd content-build && yarn build
max_attempts: 3
timeout_minutes: 15

security-audit:
name: Security Audit
Expand Down

0 comments on commit f8a974b

Please sign in to comment.