Merge pull request #329 from TheOdinProject/test-workflow

Add circleci config file
This commit is contained in:
Kevin Mulhern 2023-03-05 11:59:59 +00:00 committed by GitHub
commit ea1f23639c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
.circleci/config.yml Normal file
View File

@ -0,0 +1,20 @@
version: 2.1
orbs:
node: circleci/node@5.1.0
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