Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ROZ-MOFUMOFU-ME authored May 2, 2024
1 parent 124f29f commit fffd191
Showing 1 changed file with 32 additions and 117 deletions.
149 changes: 32 additions & 117 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,117 +11,11 @@ jobs:
name: Run build
command: npm install
- run:
name: Verify build
command: echo "Build completed successfully!"
test-v10:
docker:
- image: cimg/base:stable
steps:
- checkout
- node/install:
node-version: "10.24"
- run:
name: Run build
command: npm install
- run:
name: Verify build
command: echo "Build completed successfully!"
test-v12:
docker:
- image: cimg/base:stable
steps:
- checkout
- node/install:
node-version: "12.22"
- run:
name: Run build
command: npm install
- run:
name: Verify build
command: echo "Build completed successfully!"
test-v14:
docker:
- image: cimg/base:stable
steps:
- checkout
- node/install:
node-version: "14.21"
- run:
name: Run build
command: npm install
- run:
name: Verify build
command: echo "Build completed successfully!"
test-v16:
docker:
- image: cimg/base:stable
steps:
- checkout
- node/install:
node-version: "16.20"
- run:
name: Run build
command: npm install
- run:
name: Verify build
command: echo "Build completed successfully!"
test-v18:
docker:
- image: cimg/base:stable
steps:
- checkout
- node/install:
node-version: "18.20"
- run:
name: Run build
command: npm install
name: Run test
command: npm start
- run:
name: Verify build
command: echo "Build completed successfully!"
test-v20:
docker:
- image: cimg/base:stable
steps:
- checkout
- node/install:
node-version: "20.12"
- run:
name: Run build
command: npm install
- run:
name: Verify build
command: echo "Build completed successfully!"
test-v22:
docker:
- image: cimg/base:stable
steps:
- checkout
- node/install:
node-version: "22.0"
- run:
name: Run build
command: npm install
- run:
name: Verify build
command: echo "Build completed successfully!"
workflows:
build:
jobs:
version: 2.1
orbs:
node: circleci/node@5.2
jobs:
test-v8:
docker:
- image: circleci/node:8
steps:
- checkout
- run:
name: Run build
command: npm install
- run:
name: Verify build
command: echo "Build completed successfully!"
command: echo "Build and test completed successfully!"
test-v10:
docker:
- image: cimg/base:stable
Expand All @@ -132,9 +26,12 @@ jobs:
- run:
name: Run build
command: npm install
- run:
name: Run test
command: npm start
- run:
name: Verify build
command: echo "Build completed successfully!"
command: echo "Build and test completed successfully!"
test-v12:
docker:
- image: cimg/base:stable
Expand All @@ -145,9 +42,12 @@ jobs:
- run:
name: Run build
command: npm install
- run:
name: Run test
command: npm start
- run:
name: Verify build
command: echo "Build completed successfully!"
command: echo "Build and test completed successfully!"
test-v14:
docker:
- image: cimg/base:stable
Expand All @@ -158,9 +58,12 @@ jobs:
- run:
name: Run build
command: npm install
- run:
name: Run test
command: npm start
- run:
name: Verify build
command: echo "Build completed successfully!"
command: echo "Build and test completed successfully!"
test-v16:
docker:
- image: cimg/base:stable
Expand All @@ -171,9 +74,12 @@ jobs:
- run:
name: Run build
command: npm install
- run:
name: Run test
command: npm start
- run:
name: Verify build
command: echo "Build completed successfully!"
command: echo "Build and test completed successfully!"
test-v18:
docker:
- image: cimg/base:stable
Expand All @@ -184,9 +90,12 @@ jobs:
- run:
name: Run build
command: npm install
- run:
name: Run test
command: npm start
- run:
name: Verify build
command: echo "Build completed successfully!"
command: echo "Build and test completed successfully!"
test-v20:
docker:
- image: cimg/base:stable
Expand All @@ -197,9 +106,12 @@ jobs:
- run:
name: Run build
command: npm install
- run:
name: Run test
command: npm start
- run:
name: Verify build
command: echo "Build completed successfully!"
command: echo "Build and test completed successfully!"
test-v22:
docker:
- image: cimg/base:stable
Expand All @@ -210,11 +122,14 @@ jobs:
- run:
name: Run build
command: npm install
- run:
name: Run test
command: npm start
- run:
name: Verify build
command: echo "Build completed successfully!"
command: echo "Build and test completed successfully!"
workflows:
build:
build_and_test:
jobs:
- test-v8
- test-v10
Expand Down

0 comments on commit fffd191

Please sign in to comment.