Skip to content

Create code-check.yml #1

Create code-check.yml

Create code-check.yml #1

Workflow file for this run

name: Code check
on:
pull_request:
branches: [ "*" ]
env:
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: "fake"
CLERK_SECRET_KEY: "fake"
DATABASE_URL: "fake"
NEXT_PUBLIC_GOOGLE_ID: "fake"
jobs:
type-check:
runs-on: ubuntu-latest
steps:

Check failure on line 18 in .github/workflows/code-check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/code-check.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/action-setup@v2.2.4
with:
version: 8.6.1
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install deps (with cache)
run: pnpm install
- name: Build and test
run: |
pnpm run build
pnpm run lint