Skip to content

Commit

Permalink
feat: add ci pipeline (#1020)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcklingen authored Nov 27, 2024
1 parent 36a8431 commit 0ecec7b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: "CI"

on:
pull_request:
merge_group:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: pnpm/action-setup@v4
id: pnpm-install
with:
version: 9.5.0
run_install: false

- uses: actions/setup-node@v4
with:
node-version: 20

- run: pnpm install

- name: Build next.js app
# change this if your site requires a custom build command
run: pnpm build

0 comments on commit 0ecec7b

Please sign in to comment.