We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dd4a88 commit 563b47eCopy full SHA for 563b47e
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: Continuous Integration
2
+
3
+on: [push]
4
5
+jobs:
6
+ continuous-integration:
7
+ name: Continuous Integration
8
+ runs-on: ubuntu-latest
9
+ timeout-minutes: 10
10
+ steps:
11
+ - uses: actions/checkout@v4
12
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version-file: .nvmrc
16
17
+ - name: Install dependencies
18
+ run: npm ci
19
20
+ - name: Build
21
+ run: npm run build
.nvmrc
@@ -0,0 +1 @@
+20
0 commit comments