forms/.github/workflows/nodejs.yml
Roeland Jago Douma d2bad7c771
Add github actions
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-02-25 20:05:59 +01:00

33 lines
669 B
YAML

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