aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/js.yml
diff options
context:
space:
mode:
authorMarvin Borner2021-04-09 19:13:04 +0200
committerMarvin Borner2021-04-09 19:13:04 +0200
commita91b3874e7454f88712396054920423a68987377 (patch)
tree19bcb8e9d248fe704e69ab8feb2825e0498840f5 /.github/workflows/js.yml
Initial
Diffstat (limited to '.github/workflows/js.yml')
-rw-r--r--.github/workflows/js.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml
new file mode 100644
index 0000000..db5330d
--- /dev/null
+++ b/.github/workflows/js.yml
@@ -0,0 +1,24 @@
+name: tests
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [10.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 run build --if-present
+ - run: npm test
+ env:
+ CI: true