fix(ci): adjusting cache steps

This commit is contained in:
Timothy Stewart
2024-01-21 15:11:38 -06:00
parent f07009e0c5
commit 4b4922e1b6
5 changed files with 22 additions and 17 deletions

View File

@@ -8,11 +8,11 @@ on:
paths-ignore:
- '**/README.md'
jobs:
lint:
uses: ./.github/workflows/lint.yml
cache:
uses: ./.github/workflows/cache.yml
needs: [lint]
lint:
uses: ./.github/workflows/lint.yml
needs: [cache]
test:
uses: ./.github/workflows/test.yml
needs: [lint, cache]
needs: [cache, lint]