Skip to content

Commit

Permalink
Revert "add Node 22 to CI matrix"
Browse files Browse the repository at this point in the history
  • Loading branch information
deuch13 committed Jul 2, 2024
1 parent 77ddd5e commit 32ce548
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 15 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/explorer_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,20 @@ jobs:
- 'explorer/**'
- '.github/workflows/explorer_ci.yml'
lint-test:
# Set up matrix for Node versions
strategy:
matrix:
version: [20.x, 22.x]
needs: changes
if: needs.changes.outputs.run-ci == 'true' && (github.event.pull_request.draft == false || github.event_name == 'workflow_dispatch')
runs-on: ubuntu-latest

name: Node ${{ matrix.version }}
name: Node 20.x

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setting up Node ${{ matrix.version }}
- name: Setting up Node 20.x
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
node-version: 20.x
scope: "@dusk-network"

- name: Installing dev dependencies
Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/webwallet_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,20 @@ jobs:
- 'web-wallet/**'
- '.github/workflows/webwallet_ci.yml'
lint-test:
# Set up matrix for Node versions
strategy:
matrix:
version: [20.x, 22.x]
needs: changes
if: needs.changes.outputs.run-ci == 'true' && (github.event.pull_request.draft == false || github.event_name == 'workflow_dispatch')
runs-on: ubuntu-latest

name: Node ${{ matrix.version }}
name: Node 20.x

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setting up Node ${{ matrix.version }}
- name: Setting up Node 20.x
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
node-version: 20.x
scope: "@dusk-network"

- name: Installing dev dependencies
Expand All @@ -69,4 +65,4 @@ jobs:

- name: Building the app
run: npm run build
working-directory: ./web-wallet
working-directory: ./web-wallet

0 comments on commit 32ce548

Please sign in to comment.