fix(ci): Add a cache prestep

This commit is contained in:
Timothy Stewart
2024-01-21 12:16:21 -06:00
parent 9084c90675
commit 867eabcd7e
2 changed files with 3 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
--- ---
name: "CI" name: "Cache"
on: on:
workflow_call: workflow_call:
jobs: jobs:

View File

@@ -12,6 +12,7 @@ jobs:
uses: ./.github/workflows/lint.yml uses: ./.github/workflows/lint.yml
cache: cache:
uses: ./.github/workflows/cache.yml uses: ./.github/workflows/cache.yml
needs: [lint]
test: test:
uses: ./.github/workflows/test.yml uses: ./.github/workflows/test.yml
needs: [lint] needs: [lint,cache]