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 656c578 commit fbcbfc0Copy full SHA for fbcbfc0
.github/workflows/tests.yml
@@ -0,0 +1,31 @@
1
+name: Releases cross platform binaries for nodejs-snowflake and publishes to NPM
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ push:
8
9
10
11
+jobs:
12
+ build:
13
+ strategy:
14
+ matrix:
15
+ os: [ubuntu-latest, windows-latest, macos-latest]
16
+ node-version: [12.17.0, 14.16.0]
17
+ runs-on: ${{ matrix.os }}
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - name: Use Node.js ${{ matrix.node-version }}
21
+ uses: actions/setup-node@v1
22
+ with:
23
+ node-version: ${{ matrix.node-version }}
24
+ - name: Install Dependencies
25
+ - run: npm ci
26
27
+ - name: Build NodeJS Snowflake
28
+ - run: npm run build
29
30
+ - name: Run Tests
31
+ - run: npm t
0 commit comments