Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: removes node 16 from testing #507

Merged
merged 1 commit into from
Jul 9, 2024
Merged
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
13 changes: 5 additions & 8 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
node-version: [18, 20]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
node-version: [18, 20]
needs: install
permissions:
checks: write # https://github.com/mikepenz/action-junit-report/issues/23#issuecomment-1412597753
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
node-version: [18, 20]
needs: install
steps:
- name: Checkout
Expand All @@ -101,7 +101,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
node-version: [18, 20]
needs: install
steps:
- name: Checkout
Expand Down Expand Up @@ -129,13 +129,10 @@ jobs:
strategy:
fail-fast: false # runs all tests to completion even if one fails
matrix:
node-version: [16, 18, 20]
node-version: [18, 20]
orbit-test: ['0', '1']
custom-fee: ['0']
include:
- orbit-test: '1'
custom-fee: '1'
node-version: 16
- orbit-test: '1'
custom-fee: '1'
node-version: 18
Expand Down
Loading