Skip to content

Commit

Permalink
Use Nodejs 18+ in CI
Browse files Browse the repository at this point in the history
Node 18 is required to run out generator because of the the v6.0.0 release of
css-minimizer-webpack-plugin package.
  • Loading branch information
ahangarha committed Jan 22, 2024
1 parent 7a8f5f5 commit 630f63e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2

aliases:
- &docker-image
- image: circleci/ruby:3.0-node-browsers
- image: cimg/ruby:3.0-browsers

# Print critical data and executables versions.
- &print-system-info
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
ruby: [3.0, 3.3]
node: [16, 20]
node: [18, 20]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
strategy:
matrix:
ruby: [3.0, 3.3]
node: [16, 20]
node: [18, 20]
rake_task: ['run_rspec:all_but_examples', 'run_rspec:examples']
runs-on: ubuntu-22.04
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-js-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build:
strategy:
matrix:
node: [16, 20]
node: [18, 20]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rspec-package-specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
ruby: [3.0, 3.3]
node: [16, 20]
node: [18, 20]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 630f63e

Please sign in to comment.