Skip to content

Commit

Permalink
🔧 chore(test.yml): add Node.js setup and dependency installation step…
Browse files Browse the repository at this point in the history
…s to improve workflow setup
  • Loading branch information
skullzarmy committed Sep 30, 2023
1 parent 8feeacf commit b6b1cc6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "latest"

- name: Install Dependencies
run: npm install

- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
Expand Down

0 comments on commit b6b1cc6

Please sign in to comment.