Skip to content

Commit

Permalink
Checked npm dependencies and Prettier formatting in both frontend and…
Browse files Browse the repository at this point in the history
… backend directories
  • Loading branch information
willsawyerrrr committed Oct 19, 2023
1 parent 898a1ea commit c8110a2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/check-code-style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,16 @@ jobs:
sort-paths: backend

prettier:
strategy:
matrix:
source-directory: [frontend, backend]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm clean-install
working-directory: source-directory
- run: npx prettier --check .
working-directory: source-directory
4 changes: 4 additions & 0 deletions .github/workflows/check-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@ jobs:
working-directory: backend

npm:
strategy:
matrix:
source-directory: [frontend, backend]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm clean-install
working-directory: source-directory

0 comments on commit c8110a2

Please sign in to comment.