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 5a175bd commit 2ce2306Copy full SHA for 2ce2306
.github/workflows/test.yaml
@@ -0,0 +1,34 @@
1
+name: substraitJS test
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
9
+ strategy:
10
+ matrix:
11
+ node-version: [18]
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
16
+ - name: Initialize and update submodules
17
+ run: |
18
+ git submodule update --init --recursive
19
20
+ - name: Use Node.js
21
+ uses: actions/setup-node@v3
22
+ with:
23
+ node-version: 18
24
+ cache: "npm"
25
26
+ - name: Install dependencies
27
+ run: npm ci
28
29
+ - name: Build project
30
+ run: npm run build
31
32
+ - name: Run tests
33
+ run: npm run test
34
0 commit comments