Skip to content

Commit 9c02aa9

Browse files
Merge pull request #1568 from laststance/copilot/add-aikido-safe-chain
2 parents ea7a474 + 1c45fd5 commit 9c02aa9

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Malware Safe Chain
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
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+
with:
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

Comments
 (0)