You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4
-
#
5
-
version: 2
6
-
jobs:
7
-
build:
8
-
docker:
9
-
# specify the version you desire here
10
-
- image: circleci/node:10.18.0
11
-
12
-
# Specify service dependencies here if necessary
13
-
# CircleCI maintains a library of pre-built images
14
-
# documented at https://circleci.com/docs/2.0/circleci-images/
15
-
# - image: circleci/mongo:3.4.4
1
+
# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml'
2
+
version: 2.1
16
3
17
-
working_directory: ~/repo
4
+
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects.
5
+
# See: https://circleci.com/docs/2.0/orb-intro/
6
+
orbs:
7
+
node: circleci/node@4.7
18
8
9
+
jobs:
10
+
build-test-package:
11
+
docker:
12
+
- image: cimg/node:18.0.0
19
13
steps:
20
14
- checkout
21
15
@@ -26,20 +20,28 @@ jobs:
26
20
# fallback to using the latest cache if no exact match is found
0 commit comments