Skip to content

Commit

Permalink
add check
Browse files Browse the repository at this point in the history
  • Loading branch information
coolusaHD committed May 17, 2022
1 parent f65a3f2 commit 2179ac8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/checkCodeSytle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: validate-lint-prettier

on:
pull_request:
workflow_dispatch:

jobs:
validate:
runs-on: ubuntu-latest

steps:
- name: Check out repository code
uses: actions/checkout@v2

- name: Install dependencies frontend
run: npm ci

- name: run prettier
run: npm run prettier-check

- name: run lint
run: npm run lint

0 comments on commit 2179ac8

Please sign in to comment.