From b01c0bb4d3afea456d37d39ecda5649fc99972e6 Mon Sep 17 00:00:00 2001 From: Derek Croote Date: Thu, 22 Aug 2024 20:17:32 -0700 Subject: [PATCH] Add packageManager field to package.json --- .changeset/eleven-spoons-divide.md | 2 ++ .github/workflows/check-providers.yml | 7 ++----- .github/workflows/continuous-build.yml | 11 +++-------- .github/workflows/release.yml | 4 +--- package.json | 1 + 5 files changed, 9 insertions(+), 16 deletions(-) create mode 100644 .changeset/eleven-spoons-divide.md diff --git a/.changeset/eleven-spoons-divide.md b/.changeset/eleven-spoons-divide.md new file mode 100644 index 00000000..a845151c --- /dev/null +++ b/.changeset/eleven-spoons-divide.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/.github/workflows/check-providers.yml b/.github/workflows/check-providers.yml index e81e2e67..dda06e17 100644 --- a/.github/workflows/check-providers.yml +++ b/.github/workflows/check-providers.yml @@ -17,15 +17,12 @@ jobs: strategy: matrix: node-version: [20] - pnpm-version: [9] steps: - name: Clone @api3/chains uses: actions/checkout@v4 - - name: Setup pnpm ${{ matrix.pnpm-version }} - uses: pnpm/action-setup@v3 - with: - version: ${{ matrix.pnpm-version }} + - name: Setup pnpm + uses: pnpm/action-setup@v4 - name: Setup Node ${{ matrix.node-version }} uses: actions/setup-node@v4 diff --git a/.github/workflows/continuous-build.yml b/.github/workflows/continuous-build.yml index 3b527b3b..978d1146 100644 --- a/.github/workflows/continuous-build.yml +++ b/.github/workflows/continuous-build.yml @@ -23,15 +23,12 @@ jobs: strategy: matrix: node-version: [18, 20, latest] - pnpm-version: [9] steps: - name: Clone @api3/chains uses: actions/checkout@v4 - - name: Setup pnpm ${{ matrix.pnpm-version }} - uses: pnpm/action-setup@v3 - with: - version: ${{ matrix.pnpm-version }} + - name: Setup pnpm + uses: pnpm/action-setup@v4 - name: Setup Node ${{ matrix.node-version }} uses: actions/setup-node@v4 @@ -64,9 +61,7 @@ jobs: fetch-depth: 0 - name: Setup pnpm - uses: pnpm/action-setup@v3 - with: - version: 9 + uses: pnpm/action-setup@v4 - name: Setup Node uses: actions/setup-node@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e012a165..8316cc3f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,9 +36,7 @@ jobs: fetch-depth: 0 - name: Setup pnpm - uses: pnpm/action-setup@v3 - with: - version: 9 + uses: pnpm/action-setup@v4 - uses: actions/setup-node@v4 with: diff --git a/package.json b/package.json index d19f35e6..e916faec 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "dist", "src" ], + "packageManager": "pnpm@9.8.0", "scripts": { "build": "pnpm clean && pnpm generate:chains && tsc -p tsconfig.build.json", "changeset": "changeset",