Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit 09a54fd

Browse files
committed
CI build
1 parent e0e0764 commit 09a54fd

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.circleci/config.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: 2
2+
3+
workflows:
4+
version: 2
5+
test:
6+
jobs:
7+
- oldest-long-term-support-release
8+
- current-release
9+
10+
node-template: &node-template
11+
steps:
12+
- checkout
13+
- run: echo "Node version:" `node --version`
14+
- run: npm install
15+
- run:
16+
command: npm test
17+
environment:
18+
JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml"
19+
- store_test_results:
20+
path: reports/junit
21+
- store_artifacts:
22+
path: reports/junit
23+
24+
jobs:
25+
oldest-long-term-support-release:
26+
<<: *node-template
27+
docker:
28+
- image: circleci/node:6
29+
- image: amazon/dynamodb-local
30+
31+
current-release:
32+
<<: *node-template
33+
docker:
34+
- image: circleci/node:latest
35+
- image: amazon/dynamodb-local

0 commit comments

Comments
 (0)