We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18bd006 commit a69ceefCopy full SHA for a69ceef
.github/workflows/malware-safe-chain.yml
@@ -0,0 +1,25 @@
1
+name: Malware Safe Chain
2
+
3
+on:
4
+ pull_request: ~
5
+ push:
6
+ branches:
7
+ - main
8
9
+jobs:
10
+ malware-safe-chain:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Install pnpm
15
+ uses: pnpm/action-setup@v4
16
+ - name: Use Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '22'
20
21
+ - name: Install safe-chain
22
+ run: curl -fsSL https://raw.githubusercontent.com/AikidoSec/safe-chain/main/install-scripts/install-safe-chain.sh | sh -s -- --ci
23
24
+ - name: Install dependencies with Safe Chain protection
25
+ run: pnpm install --frozen-lockfile
0 commit comments