Skip to content

Commit 8aaf797

Browse files
authored
Add Github CI (#20)
This PR adds GitHub CI to the project that checks that the package builds. It turns out that there was a typo in the import statements that was causing build errors (which I dicovered when manually building locally). In order for CI to pass, the typo is fixed. In addition, this PR also bumps the package version to v2.1.1 to make a new bugfix release including the import path update.
1 parent 2108954 commit 8aaf797

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: safe-modules
2+
on:
3+
pull_request:
4+
push:
5+
branches: [main]
6+
7+
jobs:
8+
checks:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version: 20.x
15+
cache: yarn
16+
cache-dependency-path: yarn.lock
17+
- run: yarn
18+
- 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)