Skip to content

Commit

Permalink
fix: 🐛 update build
Browse files Browse the repository at this point in the history
  • Loading branch information
edwinhern committed Jan 27, 2025
1 parent 2933a16 commit da5f692
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false

- name: Restore dependencies
uses: actions/cache@v4
Expand All @@ -47,7 +57,6 @@ jobs:
run: pnpm lint

format:
needs: install-dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -65,6 +74,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false

- name: Restore dependencies
uses: actions/cache@v4
Expand Down

0 comments on commit da5f692

Please sign in to comment.