Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Workflow/CI files specifically
.github/ @ajag408 @Philippoes @petar-omni @jdomingos @raiseerco
.github/ @ajag408 @Philippoes @jdomingos @raiseerco

# Supply chain critical files -- lockfile, install config, package manifest
.npmrc @ajag408 @Philippoes @jdomingos @raiseerco
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,13 @@ jobs:
env:
SOCKET_SECURITY_API_KEY: ${{ secrets.SOCKET_SECURITY_API_KEY }}

- name: Install dependencies
- name: Install dependencies (Unix — Socket Firewall)
if: matrix.platform != 'win32'
run: sfw pnpm install --frozen-lockfile

- name: Install dependencies (Windows — sfw breaks pnpm install on win32)
if: matrix.platform == 'win32'
run: pnpm install --frozen-lockfile

- name: Build TypeScript
run: pnpm build
Expand Down
Loading