Add github actions

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2020-02-25 19:51:06 +01:00
commit d2bad7c771
No known key found for this signature in database
GPG key ID: F941078878347C0C
4 changed files with 82 additions and 0 deletions

32
.github/workflows/nodejs.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: Node CI
on:
pull_request:
branches:
- master
- stable*
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build
run: |
npm ci
npm run build --if-present
- name: check webpack build
run: |
bash -c "[[ ! \"`git status --porcelain `\" ]] || ( echo 'Uncommited changes in webpack build' && git status && exit 1 )"
env:
CI: true