Create codequality.yml
This commit is contained in:
parent
2e621c46b9
commit
f5af72e57a
1 changed files with 23 additions and 0 deletions
23
.github/workflows/codequality.yml
vendored
Normal file
23
.github/workflows/codequality.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
name: Code quality checks
|
||||||
|
|
||||||
|
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 install, lint, code style check
|
||||||
|
run: |
|
||||||
|
npm ci
|
||||||
|
npm run lint
|
||||||
|
npm run codestyle-check
|
Loading…
Add table
Reference in a new issue