We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1064166 commit 2639a27Copy full SHA for 2639a27
.github/workflows/ci.yml
@@ -0,0 +1,37 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Setup Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '18.x'
20
21
+ - name: Install dependencies
22
+ run: npm ci
23
24
+ - name: Build
25
+ run: npm run build
26
27
+ nix-build:
28
29
30
31
32
33
+ - name: Install Nix
34
+ uses: DeterminateSystems/nix-installer-action@main
35
36
+ - name: Build with Nix
37
+ run: nix build
0 commit comments