Skip to content

chore(release): Turbo repo unable to find GH Actions env vars (#190) #410

chore(release): Turbo repo unable to find GH Actions env vars (#190)

chore(release): Turbo repo unable to find GH Actions env vars (#190) #410

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_call:
concurrency:
group: ci-${{ github.ref_name }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20, 21, 22, 23, 24]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install --immutable
- run: yarn compile
- run: yarn lint
- run: yarn test:ci
env:
NODE_OPTIONS: "${{ matrix.node >= 20 && '--no-experimental-detect-module' }}"