Skip to content

3rd not second edition #34

3rd not second edition

3rd not second edition #34

Workflow file for this run

# name: Next.js CI
# on:
# push:
# branches:
# - main
# - develop
# pull_request:
# branches:
# - main
# - develop
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout Repository
# uses: actions/checkout@v4
# - name: Setup Node.js
# uses: actions/setup-node@v4
# with:
# node-version: 18
# - name: Setup pnpm
# uses: pnpm/action-setup@v2
# with:
# version: latest
# - name: Get pnpm store directory
# shell: bash
# run: |
# echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
# - name: Setup pnpm cache
# uses: actions/cache@v3
# with:
# path: ${{ env.STORE_PATH }}
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
# restore-keys: |
# ${{ runner.os }}-pnpm-store-
# - name: Install Dependencies
# run: pnpm install --frozen-lockfile
# # - name: Run Linting
# # run: pnpm run lint
# # - name: Type Check
# # run: pnpm exec tsc --noEmit
# - name: Build Next.js App
# run: pnpm run build