Skip to content

Commit

Permalink
🚧 Rebuild native bindings (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
janjakubnanista authored Jan 10, 2024
1 parent 119408b commit 89e9185
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/actions/install-dependencies/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ runs:
- name: Install Dependencies
shell: bash
run: pnpm install --frozen-lockfile --offline

# Rebuild native bindings
- name: Rebuild NPM packages
shell: bash
run: pnpm rebuild --recursive
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,7 @@ RUN \
# Mount pnpm store
--mount=type=cache,id=pnpm-store,target=/pnpm \
# Install dependencies (fail if we forgot to update the lockfile)
pnpm install --recursive --offline --frozen-lockfile
pnpm install --recursive --offline --frozen-lockfile

# Rebuild native bindings (since the scripts were not executed above, we need to execute them now)
RUN pnpm rebuild --recursive

0 comments on commit 89e9185

Please sign in to comment.