-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dcb6900
commit c455626
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,15 +8,14 @@ orbs: | |
# See the orb documentation here: https://circleci.com/developer/orbs/orb/circleci/node | ||
node: circleci/[email protected] | ||
|
||
|
||
jobs: | ||
# Below is the definition of your job to build and test your app, you can rename and customize it as you want. | ||
build-and-test: | ||
# These next lines define a docker executor: https://circleci.com/docs/2.0/executor-types/ | ||
# You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub. | ||
# A list of available CircleCI docker Convenience Images are available here: https://circleci.com/developer/images/image/cimg/node | ||
docker: | ||
- image: cimg/node:15.6 | ||
- image: cimg/node:16.13 | ||
# Then run your tests! | ||
# CircleCI will report the results back to your VCS provider. | ||
steps: | ||
|
@@ -25,7 +24,7 @@ jobs: | |
# Next, the node orb's install-packages step will install the dependencies from a package.json. | ||
# The orb install-packages step will also automatically cache them for faster future runs. | ||
#- node/install-packages: | ||
# override-ci-command: npm install | ||
# override-ci-command: npm install | ||
- node/install-packages | ||
# If you are using yarn instead npm, remove the line above and uncomment the two lines below. | ||
# - node/install-packages: | ||
|