Skip to content

Commit

Permalink
improve gha
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Mar 21, 2024
1 parent 76946b6 commit f1a04af
Showing 4 changed files with 19 additions and 10 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
@@ -46,9 +46,11 @@ jobs:
path: ~/.cache/Cypress
key: binary-20.x-${{ hashFiles('pnpm-lock.yaml') }}

- run: pnpm i
- run: make install
- run: pnpm i
- name: Install dependencies
run: |
pnpm i
make install
pnpm i
- name: Install Cypress if not in cache
if: steps.cache-cypress-binary.outputs.cache-hit != 'true'
5 changes: 4 additions & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -47,7 +47,10 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm i
run: |
pnpm i
make install
pnpm i
- name: Check for presence of a Change Log fragment (only pull requests)
run: |
8 changes: 5 additions & 3 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
@@ -37,9 +37,11 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-store-
- run: pnpm i
- run: make install
- run: pnpm i
- name: Install dependencies
run: |
pnpm i
make install
pnpm i
- name: Linting
run: make lint
8 changes: 5 additions & 3 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
@@ -34,9 +34,11 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-store-
- run: pnpm i
- run: make install
- run: pnpm i
- name: Install dependencies
run: |
pnpm i
make install
pnpm i
- name: Unit tests
run: make test-ci

0 comments on commit f1a04af

Please sign in to comment.