fix static code analysis

This commit is contained in:
Karol Wypchlo 2021-07-26 14:35:01 +02:00
parent 8afa43a0a2
commit f204487832
1 changed files with 10 additions and 8 deletions

View File

@ -12,20 +12,22 @@ jobs:
with:
node-version: 16.x
- name: Install dependencies
run: yarn
- name: "Static code analysis: handshake-api"
run: yarn workspace handshake-api prettier --check .
working-directory: packages/handshake-api
run: yarn && yarn prettier --check .
- name: "Static code analysis: health-check"
run: yarn workspace health-check prettier --check .
working-directory: packages/health-check
run: yarn && yarn prettier --check .
- name: "Static code analysis: website"
run: yarn workspace website prettier --check .
working-directory: packages/website
run: yarn && yarn prettier --check .
- name: "Static code analysis: dashboard"
run: yarn workspace dashboard prettier --check .
working-directory: packages/dashboard
run: yarn && yarn prettier --check .
- name: "Static code analysis: dnslink-api"
run: yarn workspace dnslink-api prettier --check .
working-directory: packages/dnslink-api
run: yarn && yarn prettier --check .