bf4cdf6245
This fixes cache propagation delay issues with Blacksmith's distributed cache. The previous implementation used separate save/restore actions with fail-on-cache-miss: true, which failed when the cache wasn't immediately available after being saved by the Prepare job. The new implementation uses actions/cache@v4 (combined save/restore) with a fallback to do the checkout if cache miss, matching the pattern used by cache-build and cache-db which don't have this issue. Changes: - Refactored cache-checkout action to use actions/cache@v4 - Added fallback checkout step when cache miss occurs - Removed mode input (no longer needed) - Updated all workflows to use the simplified cache-checkout action Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
23 lines
648 B
YAML
23 lines
648 B
YAML
name: Unit
|
|
on:
|
|
workflow_call:
|
|
env:
|
|
LINGO_DOT_DEV_API_KEY: ${{ secrets.CI_LINGO_DOT_DEV_API_KEY }}
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
test:
|
|
name: Unit
|
|
timeout-minutes: 20
|
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: .github
|
|
- uses: ./.github/actions/cache-checkout
|
|
- uses: ./.github/actions/yarn-install
|
|
- run: yarn prisma generate
|
|
- run: yarn test -- --no-isolate
|
|
# We could add different timezones here that we need to run our tests in
|
|
- run: TZ=America/Los_Angeles VITEST_MODE=timezone yarn test -- --no-isolate
|