Skip to content

Commit

Permalink
Merge pull request #3 from blumendorf/chore/add-pr-checks
Browse files Browse the repository at this point in the history
chore: add pr checks
  • Loading branch information
blumendorf authored Jan 6, 2025
2 parents 2d281d9 + 1776f47 commit 6939685
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: PR Checks

on:
pull_request:
branches: [ main ]

jobs:
build-and-lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true

- name: Type check and lint
run: pnpm lint

- name: Build
run: pnpm build

0 comments on commit 6939685

Please sign in to comment.