Skip to content

fix(deps): update all non-major dependencies #2089

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #2089

Workflow file for this run

name: CI
env:
# 7 GiB by default on GitHub, setting to 6 GiB
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
NODE_OPTIONS: --max-old-space-size=6144
# configure corepack to be strict but not download newer versions or change anything
COREPACK_DEFAULT_TO_LATEST: 0
COREPACK_ENABLE_AUTO_PIN: 0
COREPACK_ENABLE_STRICT: 1
# see https://turbo.build/repo/docs/telemetry#how-do-i-opt-out
TURBO_TELEMETRY_DISABLED: 1
DO_NOT_TRACK: 1
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
timeout-minutes: 10
runs-on: ubuntu-latest
permissions:
contents: read # to clone the repo
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ^24.15.0
- run: corepack enable
- run: pnpm --version
- uses: actions/setup-node@v6
with:
node-version: ^24.15.0
cache: "pnpm"
- name: install
run: pnpm install --frozen-lockfile --prefer-offline
- name: format
run: pnpm format
- name: lint
run: pnpm run lint
- name: typecheck
run: pnpm run typecheck
- name: audit
if: (${{ success() }} || ${{ failure() }})

Check warning on line 48 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Workflow syntax warning

.github/workflows/ci.yml (Line: 48, Col: 13): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
run: pnpm audit --prod --audit-level moderate
- name: test
if: (${{ success() }} || ${{ failure() }})

Check warning on line 51 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Workflow syntax warning

.github/workflows/ci.yml (Line: 51, Col: 13): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
run: pnpm test:self