Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
ci: cache example files
Browse files Browse the repository at this point in the history
  • Loading branch information
hanspagel committed Jan 31, 2024
1 parent f40725d commit 4412a9a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,14 @@ jobs:
run: pnpm build
- name: Check types
run: pnpm types:check
- name: Cache example files
id: cache-example-files
uses: actions/cache@v4
with:
path: tests/files
key: ${{ runner.os }}-example-files
- name: Fetch example files
if: steps.cache-example-files.outputs.cache-hit != 'true'
run: pnpm fetch:files
- name: Run tests
run: pnpm test

0 comments on commit 4412a9a

Please sign in to comment.