Skip to content

Commit

Permalink
test (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Jul 6, 2024
1 parent 24df4e4 commit 8b20685
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'pnpm'

- name: Install pnpm
run: npm install -g pnpm

- name: Install dependencies
run: pnpm install

- name: Cache pnpm store
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Cache Next.js build
uses: actions/cache@v3
with:
path: .next/cache
key: ${{ runner.os }}-nextjs-cache-${{ hashFiles('**/*') }}
restore-keys: |
${{ runner.os }}-nextjs-cache-
- name: Build Next.js
run: pnpm run build

0 comments on commit 8b20685

Please sign in to comment.