Skip to content

Commit

Permalink
Merge pull request #917 from 3YOURMIND/remove-bun-install-from-workflow
Browse files Browse the repository at this point in the history
fix(ci): remove `bun install` call
  • Loading branch information
Isokaeder committed May 13, 2024
2 parents 71dbb5f + 66c779b commit 1bb2f09
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,15 @@ jobs:
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- uses: actions/cache@v4
with:
path: |
**/node_modules
key: ${{ hashFiles('**/yarn.lock') }}
- uses: oven-sh/setup-bun@v1

- run: bun install
- name: Install modules
run: yarn install --frozen-lockfile

# update npm for provenance support
- run: npm --version && npm install -g npm && npm --version
Expand Down

0 comments on commit 1bb2f09

Please sign in to comment.