Skip to content

Bump eslint-plugin-import from 2.25.2 to 2.28.1 #50

Bump eslint-plugin-import from 2.25.2 to 2.28.1

Bump eslint-plugin-import from 2.25.2 to 2.28.1 #50

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