Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 2 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,6 @@ jobs:
with:
node: ${{ env.NODE_VERSION }}

- name: Save build artifacts
uses: actions/cache/save@v4
with:
path: .
key: ${{ env.CACHE_KEY }}

unit:
needs: build # Require build to complete before running tests

Expand All @@ -59,11 +53,8 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
cache: npm

- name: Restore build artifacts
uses: actions/cache/restore@v4
with:
path: .
key: ${{ env.CACHE_KEY }}
- name: Install dependencies
run: npm ci --include=dev

- name: Run tests
run: npm run test
Expand Down
Loading