Skip to content

Commit 89760f5

Browse files
Add CI
1 parent a8e49d3 commit 89760f5

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
defaults:
13+
run:
14+
working-directory: app
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- uses: actions/setup-node@v4
19+
with:
20+
node-version: 22
21+
cache: npm
22+
cache-dependency-path: app/package-lock.json
23+
24+
- run: npm ci
25+
26+
- name: TypeScript type check
27+
run: npx tsc --noEmit

0 commit comments

Comments
 (0)