We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7b58ea commit a40fa69Copy full SHA for a40fa69
.github/workflows/build.yml
@@ -0,0 +1,33 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ strategy:
16
+ matrix:
17
+ node-version: [22]
18
19
+ steps:
20
+ - name: Checkout code
21
+ uses: actions/checkout@v4
22
23
+ - name: Use Node.js ${{ matrix.node-version }}
24
+ uses: actions/setup-node@v4
25
+ with:
26
+ node-version: ${{ matrix.node-version }}
27
+ cache: 'npm'
28
29
+ - name: Install dependencies
30
+ run: npm ci
31
32
+ - name: Build project
33
+ run: npm run build
0 commit comments