Skip to content

migrate env variables to astro:env #661

migrate env variables to astro:env

migrate env variables to astro:env #661

Workflow file for this run

name: Check
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
Typescript:
runs-on: ubuntu-latest
env:
PUBLIC_VERCEL_STORAGE_URL: ${{ vars.PUBLIC_VERCEL_STORAGE_URL }}
PUBLIC_CV_FILE_NAME: ${{ vars.PUBLIC_CV_FILE_NAME }}
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- run: pnpm install
- name: Run checks
run: pnpm check
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- run: pnpm install
- name: Run linter
run: pnpm lint
Format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- run: pnpm install
- name: Check formatting
run: pnpm format:check