Merge pull request #1 from davidodenwald/gitlab_workflow

Run tests as gitlab wokflow
This commit is contained in:
{{david|odenwald}} 2022-12-01 18:05:44 +01:00 committed by GitHub
commit bc66d95d47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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