Skip to content

Commit

Permalink
fix: fixed workflow not finding package lock because in the wrong dir…
Browse files Browse the repository at this point in the history
…ectory
  • Loading branch information
Alex-zReeZ committed Jun 25, 2024
1 parent d456c85 commit 5bb4b39
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/formating.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Go to interface
run: cd nextjs-interface
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Go to interface
run: cd nextjs-interface
- name: Install dependencies
run: npm install
- name: Check code style with Prettier
Expand All @@ -30,14 +30,14 @@ jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Go to interface
run: cd nextjs-interface
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Go to interface
run: cd nextjs-interface
- name: Install dependencies
run: npm install
- name: Lint code with Eslint
Expand Down

0 comments on commit 5bb4b39

Please sign in to comment.