mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-06-05 15:09:09 +09:00
21 lines
355 B
YAML
21 lines
355 B
YAML
|
|
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
|