We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8e49d3 commit 89760f5Copy full SHA for 89760f5
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,27 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
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