8000 Merge pull request #329 from TheOdinProject/test-workflow · sabs/javascript-exercises@ea1f236 · GitHub
[go: up one dir, main page]

Skip to content

Commit ea1f236

Browse files
authored
Merge pull request TheOdinProject#329 from TheOdinProject/test-workflow
Add circleci config file
2 parents 8dfb7e4 + 99d0e8a commit ea1f236

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2.1
2+
3+
orbs:
4+
node: circleci/node@5.1.0
5+
6+
jobs:
7+
test-solutions:
8+
executor: node/default
9+
steps:
10+
- checkout
11+
- node/install-packages:
12+
pkg-manager: npm
13+
- run:
14+
command: npm run test solution
15+
name: Run tests in **/solution/*.spec.js
16+
17+
workflows:
18+
test-solutions:
19+
jobs:
20+
- test-solutions

0 commit comments

Comments
 (0)
0