Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,36 +14,36 @@ trigger:

steps:
- name: install
image: node:18
image: node:20
pull: always
commands:
- node -v
- npm -v
- npm ci

- name: build
image: node:18
image: node:20
commands:
- npm run build
depends_on:
- install

- name: format
image: node:18.19
image: node:20
commands:
- npm run check-format
depends_on:
- build

- name: lint
image: node:18.19
image: node:20
commands:
- npm run lint
depends_on:
- build

- name: set-version-nightly
image: node:18
image: node:20
commands:
- eval npm pkg set version="$(npm pkg get version)-nightly-$DRONE_COMMIT"

Expand Down Expand Up @@ -98,29 +98,29 @@ trigger:

steps:
- name: install
image: node:18
image: node:20
pull: always
commands:
- node -v
- npm -v
- npm ci

- name: build
image: node:18
image: node:20
commands:
- npm run build
depends_on:
- install

- name: format
image: node:18.19
image: node:20
commands:
- npm run check-format
depends_on:
- build

- name: lint
image: node:18.19
image: node:20
commands:
- npm run lint
depends_on:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
test:
uses: ./.github/workflows/reusable-test.yml
with:
node-version: '18'
node-version: '20'
upload-coverage: true
secrets:
infura-project-id: ${{ secrets.INFURA_PROJECT_ID }}
Expand All @@ -44,7 +44,7 @@ jobs:
if: ${{ startsWith('release-please--', github.ref_name ) }}
strategy:
matrix:
node-version: ['20', '22', '24']
node-version: ['22', '24']
with:
node-version:
secrets:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
}
},
"engine": {
"node": ">=18.0.0",
"node": ">=20.0.0",
"npm": ">=8"
},
"scripts": {
Expand Down
Loading