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 9855c57 commit 6364d69Copy full SHA for 6364d69
.github/workflows/malware-safe-chain.yml
@@ -0,0 +1,28 @@
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
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Install pnpm
15
+ uses: pnpm/action-setup@v4
16
+ with:
17
+ version: 10
18
+ - name: Use Node.js
19
+ uses: actions/setup-node@v4
20
21
+ node-version: '22'
22
+ cache: 'pnpm'
23
+ - name: Install Aikido Safe Chain
24
+ run: npm install -g @aikidosec/safe-chain
25
+ - name: Setup Safe Chain for CI
26
+ run: safe-chain setup-ci
27
+ - name: Install dependencies with Safe Chain protection
28
+ run: pnpm install
0 commit comments