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.
2 parents ea7a474 + 1c45fd5 commit 9c02aa9Copy full SHA for 9c02aa9
.github/workflows/malware-safe-chain.yml
@@ -0,0 +1,30 @@
1
+name: Malware Safe Chain
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
8
9
+jobs:
10
+ safe-chain:
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: read
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: Install pnpm
17
+ uses: pnpm/action-setup@v4
18
+ with:
19
+ version: 10
20
+ - name: Use Node.js
21
+ uses: actions/setup-node@v4
22
23
+ node-version: '22'
24
+ cache: 'pnpm'
25
+ - name: Install Aikido Safe Chain
26
+ run: npm install -g @aikidosec/safe-chain
27
+ - name: Setup Safe Chain for CI
28
+ run: safe-chain setup-ci
29
+ - name: Install dependencies with Safe Chain protection
30
+ run: pnpm install
0 commit comments