.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / table / node_modules / json-schema-traverse / .github / workflows / build.yml
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/table/node_modules/json-schema-traverse/.github/workflows/build.yml b/.config/coc/extensions/node_modules/coc-prettier/node_modules/table/node_modules/json-schema-traverse/.github/workflows/build.yml
new file mode 100644 (file)
index 0000000..f8ef5ba
--- /dev/null
@@ -0,0 +1,28 @@
+name: build
+
+on:
+  push:
+    branches: [master]
+  pull_request:
+    branches: ["*"]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    strategy:
+      matrix:
+        node-version: [10.x, 12.x, 14.x]
+
+    steps:
+      - uses: actions/checkout@v2
+      - name: Use Node.js ${{ matrix.node-version }}
+        uses: actions/setup-node@v1
+        with:
+          node-version: ${{ matrix.node-version }}
+      - run: npm install
+      - run: npm test
+      - name: Coveralls
+        uses: coverallsapp/github-action@master
+        with:
+          github-token: ${{ secrets.GITHUB_TOKEN }}