Skip to content

Commit

Permalink
Add circleci config file
Browse files Browse the repository at this point in the history
* We can use circleci to test all spec files in solution subdirectories
  • Loading branch information
01zulfi committed Feb 20, 2023
1 parent 8dfb7e4 commit 99d0e8a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2.1

orbs:
node: circleci/[email protected]

jobs:
test-solutions:
executor: node/default
steps:
- checkout
- node/install-packages:
pkg-manager: npm
- run:
command: npm run test solution
name: Run tests in **/solution/*.spec.js

workflows:
test-solutions:
jobs:
- test-solutions

0 comments on commit 99d0e8a

Please sign in to comment.