Run tests as gitlab wokflow

This commit is contained in:
davidodenwald 2022-12-01 18:03:33 +01:00
parent 3630318e7b
commit 10f41d492f

25
.github/workflows/node.js.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Node.js CI
on:
push:
branches: [$default-branch]
pull_request:
branches: [$default-branch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm run build
- run: npm test