wingbot-mongodb 3.0.0-alpha.8 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,39 @@
1
+ name: Push
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ push:
8
+ branches:
9
+ - master
10
+
11
+ permissions:
12
+ contents: write
13
+
14
+ jobs:
15
+
16
+ test:
17
+ name: test
18
+ runs-on: ubuntu-latest
19
+
20
+ strategy:
21
+ matrix:
22
+ node-version: [14.x]
23
+
24
+ steps:
25
+
26
+ - name: Checkout
27
+ uses: actions/checkout@v2
28
+
29
+ - name: Node.js ${{ matrix.node-version }} setup
30
+ uses: actions/setup-node@v2
31
+ with:
32
+ node-version: ${{ matrix.node-version }}
33
+ cache: 'npm'
34
+
35
+ - name: Npm install
36
+ run: npm install
37
+
38
+ - name: Test
39
+ run: npm run test:lint