There was an error while loading. Please reload this page.
1 parent a8ff57f commit 67ea9f6Copy full SHA for 67ea9f6
2 files changed
.node-version
@@ -1 +1 @@
1
-12.8.1
+14.18.1
circle.yml
@@ -1,16 +1,24 @@
# https://circleci.com/orbs/registry/orb/circleci/node
2
+version: 2.1
3
+orbs:
4
+ node: circleci/node@4.7.0
5
jobs:
6
build:
- executor: node/default
7
+ docker:
8
+ - image: cimg/node:14.18.1
9
steps:
10
- checkout
11
+ - run:
12
+ name: Environment Details
13
+ command: |
14
+ echo "Node.js version"
15
+ node --version
16
+ echo "npm version"
17
+ npm --version
18
- node/install-packages
19
- run:
20
name: Run Tests
21
command: npm run test
22
23
name: Semantic Release
24
command: npm run semantic-release || true
-orbs:
- node: circleci/node@4.7.0
-version: 2.1
0 commit comments