From 10ea0b4af75a0f2de585aa1c5eec3fbb115b4cbf Mon Sep 17 00:00:00 2001 From: Suraj ! <101963203+sujjeee@users.noreply.github.com> Date: Sun, 15 Oct 2023 16:22:56 +0530 Subject: [PATCH] Create code-check.yml --- .github/workflows/code-check.yml | 51 ++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/code-check.yml diff --git a/.github/workflows/code-check.yml b/.github/workflows/code-check.yml new file mode 100644 index 0000000..07b5e51 --- /dev/null +++ b/.github/workflows/code-check.yml @@ -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