Skip to content

Commit

Permalink
chore: [#1367] Adds integration tests for Bun
Browse files Browse the repository at this point in the history
  • Loading branch information
capricorn86 committed Apr 4, 2024
1 parent 3c0bf9f commit fd45d3c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'

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

- name: Cache node modules
uses: actions/cache@v4
id: cache-node-modules
Expand Down Expand Up @@ -48,12 +51,9 @@ jobs:
path: .turbo
key: turbo-master

- name: Install NPM dependencies
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts

- name: Install Bun
run: curl -fsSL https://bun.sh/install | bash

- name: Compile package
run: npm run compile
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

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

- name: Cache node modules
uses: actions/cache@v4
id: cache-node-modules
Expand All @@ -88,13 +91,10 @@ jobs:
restore-keys: |
turbo-master
- name: Install NPM dependencies
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts

- name: Install Bun
run: curl -fsSL https://bun.sh/install | bash

- name: Set version
run: node ./node_modules/.bin/happy-set-workspace-version --version=${{needs.check-next-version.outputs.next_version }}

Expand Down

0 comments on commit fd45d3c

Please sign in to comment.