From 06084792c9104eb47f9348265f1622027649e292 Mon Sep 17 00:00:00 2001 From: Gajesh Naik Date: Sat, 1 Feb 2025 20:10:19 -0800 Subject: [PATCH] update --- .github/workflows/ci.yml | 6 +++++- .gitignore | 1 - package.json | 3 +++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0cd997a..8d40990 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,10 +13,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 @@ -52,6 +54,8 @@ jobs: steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Use Node.js uses: actions/setup-node@v3 diff --git a/.gitignore b/.gitignore index 7f46e8d..390c363 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ # Dependencies node_modules/ yarn.lock -package-lock.json # Build dist/ diff --git a/package.json b/package.json index 74d6528..d6b8f84 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,9 @@ "description": "Developer-friendly SDK for interacting with EigenDA proxy", "main": "dist/index.js", "types": "dist/index.d.ts", + "engines": { + "node": ">=18.0.0" + }, "scripts": { "build": "tsc", "test": "jest",