Skip to content

Commit

Permalink
fix on-push.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
abdulrhman500 authored Oct 10, 2023
1 parent 7ffde33 commit d2bacb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: cd server; npm i
run: cd ../server; npm i

- name: Run Prettier
run: cd server; npm run prettier:fix
run: cd ../server; npm run prettier:fix

- name: Build Project
run: cd server; npm run build --if-present
run: cd ../server; npm run build --if-present

# - name: Run tests
# run: npm test

0 comments on commit d2bacb8

Please sign in to comment.