diff --git a/.github/workflows/cron_read.yaml b/.github/workflows/cron_read.yaml index 5f401d2e..f8750634 100644 --- a/.github/workflows/cron_read.yaml +++ b/.github/workflows/cron_read.yaml @@ -20,6 +20,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: pnpm i # 安装 package.json 中的依赖项 + run: npm install # 安装 package.json 中的依赖项 - name: Run a script run: node pteer.js # 替换为你想运行的脚本的实际名称 diff --git a/.github/workflows/read.yaml b/.github/workflows/read.yaml index 22269ff6..863ca867 100644 --- a/.github/workflows/read.yaml +++ b/.github/workflows/read.yaml @@ -21,6 +21,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: pnpm i # 安装 package.json 中的依赖项 + run: npm install # 安装 package.json 中的依赖项 - name: Run a script run: node pteer.js # 替换为你想运行的脚本的实际名称 diff --git a/.gitignore b/.gitignore index 13dfa363..9ec61bca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .env -node_modules/ \ No newline at end of file +node_modules/ +.env.local \ No newline at end of file