Skip to content

Commit 038b4ea

Browse files
tim-webflowclaude
andauthored
Add GitHub Actions build check for pull requests (#62)
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2527ef4 commit 038b4ea

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Set up Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: 20
18+
cache: npm
19+
20+
- name: Install dependencies
21+
run: npm ci
22+
23+
- name: Build
24+
run: npm run build

0 commit comments

Comments
 (0)