Add github actions CI

This commit is contained in:
Blue (Lukas Rieger) 2021-02-19 16:48:40 +01:00
parent 984b554df4
commit da08361097
No known key found for this signature in database
GPG Key ID: 904C4995F9E1F800
1 changed files with 25 additions and 0 deletions

25
.github/workflows/nodejs.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [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 ci
- run: npm run build
- uses: actions/upload-artifact@v2
with:
name: artifacts
path: build/*