Skip to content

Commit

Permalink
remove node in favor of bun setup
Browse files Browse the repository at this point in the history
  • Loading branch information
raulfdm committed Dec 16, 2023
1 parent bdaae00 commit abb2cb1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@ jobs:
- name: Checkout to repository
uses: actions/[email protected]

- uses: actions/setup-node@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
node-version: 20

- name: Install Bun
run: npm install -g [email protected]
bun-version: 1.0.18

- name: Install Dependencies
run: bun install
run: bun install --frozen-lockfile --no-cache

# Necessary because it's being used in the code
- name: Linting/Formating
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,13 @@ jobs:
- name: Checkout Repo
uses: actions/[email protected]

- uses: actions/setup-node@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
node-version: 20

- name: Install Bun
run: npm install -g [email protected]
bun-version: 1.0.18

- name: Install Dependencies
run: bun install --no-cache
run: bun install --frozen-lockfile --no-cache

- name: Create Release Pull Request
id: changesets
Expand Down

0 comments on commit abb2cb1

Please sign in to comment.