Add github actions
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
5500fd5c13
commit
d2bad7c771
4 changed files with 82 additions and 0 deletions
32
.github/workflows/nodejs.yml
vendored
Normal file
32
.github/workflows/nodejs.yml
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue