Skip to content

build(deps): bump actions/cache from 5.0.4 to 5.0.5 #49

build(deps): bump actions/cache from 5.0.4 to 5.0.5

build(deps): bump actions/cache from 5.0.4 to 5.0.5 #49

Workflow file for this run

name: Build
on:
pull_request:
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
TURBO_TELEMETRY_DISABLED: "1"
steps:
- name: Checkout Repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Cache turbo build setup
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: 24
cache: npm
- name: Install Dependencies
run: npm ci
- name: Biome check
run: npm run lint
- name: Build
run: npm run build