chore(#zimic): support to typescript 5.5 (#234) #201
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cache | |
on: | |
push: | |
branches: | |
- canary | |
workflow_dispatch: | |
concurrency: | |
group: cache | |
cancel-in-progress: true | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_REMOTE_CACHE_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_REMOTE_CACHE_TEAM }} | |
TURBO_LOG_ORDER: stream | |
jobs: | |
cache-canary: | |
name: Cache canary | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
env: | |
NODE_VERSION: 20 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Zimic | |
uses: ./.github/actions/zimic-setup | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
turbo-token: ${{ env.TURBO_TOKEN }} | |
turbo-team: ${{ env.TURBO_TEAM }} | |
- name: Check formatting style and save prettier cache | |
uses: ./.github/actions/zimic-style-check |