Skip to content

Commit

Permalink
Create code-check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sujjeee authored Oct 15, 2023
1 parent 6d27c4f commit 10ea0b4
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
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:
- 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

0 comments on commit 10ea0b4

Please sign in to comment.