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>
25 lines
680 B
YAML
25 lines
680 B
YAML
name: API v2 Unit
|
|
on:
|
|
workflow_call:
|
|
env:
|
|
LINGO_DOT_DEV_API_KEY: ${{ secrets.CI_LINGO_DOT_DEV_API_KEY }}
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
test:
|
|
name: API v2 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
|
|
- name: Run API v2 unit tests
|
|
working-directory: apps/api/v2
|
|
run: |
|
|
export NODE_OPTIONS="--max_old_space_size=8192"
|
|
yarn workspace @calcom/platform-libraries build && yarn test
|