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:
workflow_call:
jobs:

View File

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