From 748d68e91eec548ccc916399f05a78c3947b1977 Mon Sep 17 00:00:00 2001 From: Jared Wray Date: Wed, 24 Apr 2024 08:12:41 -0700 Subject: [PATCH 1/3] cacheable-request - upgrading vitest and modules to 1.5.1 --- packages/cacheable-request/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cacheable-request/package.json b/packages/cacheable-request/package.json index 355270d..a67be34 100644 --- a/packages/cacheable-request/package.json +++ b/packages/cacheable-request/package.json @@ -51,7 +51,7 @@ "@types/node": "^20.12.7", "@types/responselike": "^1.0.3", "@types/sqlite3": "^3.1.11", - "@vitest/coverage-v8": "^1.5.0", + "@vitest/coverage-v8": "^1.5.1", "body-parser": "^1.20.2", "delay": "^6.0.0", "eslint": "^8.57.0", @@ -65,7 +65,7 @@ "ts-jest-resolver": "^2.0.1", "ts-node": "^10.9.2", "typescript": "^5.4.5", - "vitest": "^1.5.0", + "vitest": "^1.5.1", "xo": "^0.58.0" }, "jest": { From bdd9b57ecca3d077c18d20da1cd2742f78cfff4c Mon Sep 17 00:00:00 2001 From: Jared Wray Date: Wed, 24 Apr 2024 08:18:42 -0700 Subject: [PATCH 2/3] Update deploy-website.yml --- .github/workflows/deploy-website.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml index 7684752..73b6287 100644 --- a/.github/workflows/deploy-website.yml +++ b/.github/workflows/deploy-website.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [18] + node-version: [20] steps: - name: Checkout @@ -25,11 +25,11 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Install Dependencies - run: yarn + - name: Install PNPM + run: npm install -g pnpm - name: Build Website - run: yarn website:build + run: pnpm website:build - name: Publish to Cloudflare Pages uses: cloudflare/pages-action@1 From f3ffbb41feab9532598bea907cf374b5b80e4d8f Mon Sep 17 00:00:00 2001 From: Jared Wray Date: Wed, 24 Apr 2024 08:31:00 -0700 Subject: [PATCH 3/3] moving back to 18 --- .github/workflows/deploy-website.yml | 2 +- .github/workflows/tests.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml index 73b6287..1ddeb0c 100644 --- a/.github/workflows/deploy-website.yml +++ b/.github/workflows/deploy-website.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [20] + node-version: [18] steps: - name: Checkout diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 308fc52..5c1bd8d 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: ['18', '20'] + node: ['18'] name: Node ${{ matrix.node }} steps: - uses: actions/checkout@v3