Skip to content

Commit

Permalink
use npm instead of installing lerna
Browse files Browse the repository at this point in the history
  • Loading branch information
LandryNorris committed Aug 4, 2023
1 parent 7e4f9a3 commit c251ed8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,16 @@ jobs:
- name: Install dependencies
run: npm install

- name: Install lerna
run: npm install -g lerna

- name: Build project
run: lerna run build
run: npx lerna run build

- name: Make prebuilds
if: ${{ matrix.linux }}
run: lerna run makePrebuildsOnLinux
run: npx lerna run makePrebuildsOnLinux

- name: Make prebuilds
if: ${{ matrix.darwin }}
run: lerna run makePrebuildsOnDarwin
run: npx lerna run makePrebuildsOnDarwin

- name: Create Artifacts
uses: actions/upload-artifact@v2
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c251ed8

Please sign in to comment.