Skip to content

Fix: Removing unwanted dotenv dependency 👽 #1608

Fix: Removing unwanted dotenv dependency 👽

Fix: Removing unwanted dotenv dependency 👽 #1608

Workflow file for this run

# https://github.com/kentcdodds/kentcdodds.com/blob/main/.github/workflows/deployment.yml
name: Code Check
on:
push:
branches:
- "main"
pull_request:
branches: [main]
jobs:
lint:
name: ⬣ BiomeJS
runs-on: ubuntu-latest
timeout-minutes: 15
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 9.1.4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: 📥 Download deps
run: pnpm install
- name: 🔬 Lint
run: pnpm format