Skip to content

Commit

Permalink
Fix bun workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rianadon committed Apr 10, 2024
1 parent b14c276 commit 377c3d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
bun-version: latest

- name: Install npm dependencies
run: bun install --frozen-lockfile
run: bun install # --frozen-lockfile

- name: Install openscad
run: sudo apt-get update && sudo apt-get install -y openscad
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY : build keycaps keycaps-simple keycaps2 keycaps-simple2 keyholes switches venv optimize docs docs-ci keyboards ci ci-base ci-setup vite-build quickstart npm-install dev
build: target/proto/manuform.ts target/proto/lightcycle.ts target/proto/cuttleform.ts target/editorDeclarations.d.ts

ifeq ($(shell bun -v > /dev/null),)
ifneq (, $(shell which bun))
NODE = bun
NPM = bun
else
Expand Down

0 comments on commit 377c3d2

Please sign in to comment.