Skip to content

Commit

Permalink
fix: Upgrade node where 16 was still being used and fix pnpm in ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
richtera committed Feb 7, 2024
1 parent 4772b40 commit 2b3d591
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,16 @@ jobs:
- name: ⚙️ Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18.x'
cache: 'pnpm'

- name: 🧰 Install
run: pnpm install
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: |
- recursive: false
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: ⬆️ Bump package version
run: |-
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/lint-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,13 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Install
run: pnpm install
- uses: pnpm/action-setup@v2
name: Install
with:
version: 8
run_install: |
- recursive: false
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Lint
run: pnpm lint
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,18 @@ jobs:
- name: ⚙️ Setup Node.js v16
uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
scope: '@erc725'
cache: 'pnpm'

- name: 🧰 Install
run: pnpm install
- uses: pnpm/action-setup@v2
name: Install
with:
version: 8
run_install: |
- recursive: false
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: 💅 Lint
run: pnpm lint
Expand Down

0 comments on commit 2b3d591

Please sign in to comment.