Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.

Commit 67ea9f6

Browse files
chore: Fix semantic release (#93)
1 parent a8ff57f commit 67ea9f6

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

.node-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.8.1
1+
14.18.1

circle.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
11
# https://circleci.com/orbs/registry/orb/circleci/node
2+
version: 2.1
3+
orbs:
4+
node: circleci/[email protected]
25
jobs:
36
build:
4-
executor: node/default
7+
docker:
8+
- image: cimg/node:14.18.1
59
steps:
610
- checkout
11+
- run:
12+
name: Environment Details
13+
command: |
14+
echo "Node.js version"
15+
node --version
16+
echo "npm version"
17+
npm --version
718
- node/install-packages
819
- run:
920
name: Run Tests
1021
command: npm run test
1122
- run:
1223
name: Semantic Release
1324
command: npm run semantic-release || true
14-
orbs:
15-
node: circleci/[email protected]
16-
version: 2.1

0 commit comments

Comments
 (0)