Skip to content

Commit 25e8c90

Browse files
committed
chore: Add GitHub Actions build workflow
1 parent 319e48b commit 25e8c90

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: 20
13+
cache: yarn
14+
- run: yarn install --frozen-lockfile
15+
- run: yarn build
16+
- uses: tj-actions/changed-files@v41
17+
with:
18+
fail_on_initial_diff_error: true

0 commit comments

Comments
 (0)