zappyzep/.github/workflows/codequality.yml
laratheprotogen 43bbaa0035
Some checks failed
Code quality checks / build (18.16) (push) Failing after 1m21s
Update .github/workflows/codequality.yml
Signed-off-by: laratheprotogen <laraproto@proton.me>
2024-10-25 11:46:54 +00:00

23 lines
473 B
YAML

name: Code quality checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.16]
steps:
- uses: actions/checkout@v4
- 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