Skip to content

Commit 225d74e

Browse files
committed
Add Github CI
1 parent 747c5a8 commit 225d74e

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: safe-modules
2+
on: [push]
3+
4+
jobs:
5+
checks:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-node@v4
10+
with:
11+
node-version: 20.x
12+
cache: npm
13+
cache-dependency-path: package-lock.json
14+
- run: yarn
15+
- run: yarn build

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@safe-global/safe-modules-deployments",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Collection of Safe Modules singleton deployments",
55
"homepage": "https://github.com/safe-global/safe-modules-deployments/",
66
"license": "MIT",

src/safe-4337-module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Safe4337Module030 from './assets/safe-4337-module/v0.3.0/safe-4337-module.json';
22
import Safe4337Module020 from './assets/safe-4337-module/v0.2.0/safe-4337-module.json';
3-
import SafeModuleSetup030 from './assets/safe-4337-module/v0.3.0/safe-setup-module.json';
3+
import SafeModuleSetup030 from './assets/safe-4337-module/v0.3.0/safe-module-setup.json';
44
import AddModulesLib020 from './assets/safe-4337-module/v0.2.0/add-modules-lib.json';
55
import { DeploymentFilter, Deployment } from './types';
66
import { applyFilterDefaults, findDeployment } from './utils';

0 commit comments

Comments
 (0)