Adds skipping steps

pull/7431/head
zomars 2023-02-24 21:07:13 -07:00
parent e8e437ba01
commit 0991c54f36
1 changed files with 4 additions and 0 deletions

View File

@ -21,8 +21,12 @@ jobs:
- uses: ./.github/actions/yarn-install
- uses: ./.github/actions/env-read-file
- uses: ./.github/actions/cache-db
id: cache-db
with:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
- uses: ./.github/actions/cache-build
id: cache-build
- run: yarn db-seed
if: steps.cache-db.outputs.cache-hit != 'true'
- run: yarn build
if: steps.cache-build.outputs.cache-hit != 'true'