From 9b1283e5274c30bf922d3b7f0a4a44ba58df13a3 Mon Sep 17 00:00:00 2001 From: Miikka <2606411+Dragory@users.noreply.github.com> Date: Sun, 12 Jan 2020 11:58:42 +0200 Subject: [PATCH] Create codequality.yml --- .github/workflows/codequality.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/codequality.yml diff --git a/.github/workflows/codequality.yml b/.github/workflows/codequality.yml new file mode 100644 index 00000000..205b60c3 --- /dev/null +++ b/.github/workflows/codequality.yml @@ -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