Skip to content

Commit

Permalink
Merge branch 'gha-maint/base' into gha-maint/integration
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerHendrickson authored Oct 4, 2024
2 parents b07cd5c + bd77fbc commit 537df35
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
run: yarn install --immutable
env:
CI: 1
- name: Cache node_modules
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
path: node_modules

test-api:
name: Test api-side code
Expand Down Expand Up @@ -90,6 +95,12 @@ jobs:
with:
node-version-file: .nvmrc
cache: yarn
- name: Restore node_modules
id: restore-node-modules
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
path: node_modules
# - name: Install dependencies
# run: yarn install --immutable
# env:
Expand Down Expand Up @@ -139,6 +150,12 @@ jobs:
with:
node-version-file: .nvmrc
cache: yarn
- name: Restore node_modules
id: restore-node-modules
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
path: node_modules
# - name: Install dependencies
# run: yarn install --immutable
# env:
Expand Down Expand Up @@ -218,6 +235,12 @@ jobs:
with:
node-version-file: .nvmrc
cache: yarn
- name: Restore node_modules
id: restore-node-modules
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
path: node_modules
# - name: Install dependencies
# run: yarn install --immutable
# env:
Expand Down

0 comments on commit 537df35

Please sign in to comment.