Skip to content

Bump postcss, stylelint, stylelint-scss, stylelint-webpack-plugin and… #51

Bump postcss, stylelint, stylelint-scss, stylelint-webpack-plugin and…

Bump postcss, stylelint, stylelint-scss, stylelint-webpack-plugin and… #51

Workflow file for this run

name: Node CI
on: [push]
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 ci, build
run: |
find js/ -type f ! -name 'activate.js' ! -name 'personalsettings.js' ! -name 'about.js' -delete
npm ci
npm run build --if-present
- name: lint
run: |
npm run lint
- name: check webpack build
run: |
git status
bash -c "[[ ! \"`git status --porcelain `\" ]] || ( echo 'Uncommited changes in webpack build' && git status && exit 1 )"
env:
CI: true