flaska/.circleci/config.yml

24 lines
412 B
YAML
Raw Permalink Normal View History

2021-10-11 02:14:29 +00:00
version: 2
jobs:
2021-10-11 02:15:52 +00:00
run_tester:
2021-10-11 02:14:29 +00:00
docker:
- image: circleci/node:latest
working_directory: ~/flaska
steps:
- checkout
- run:
name: Install dependencies
command: |
npm install
npm list --all
- run:
name: Run tests
command: |
npm test
workflows:
version: 2
build_deploy:
jobs:
2021-10-11 02:15:52 +00:00
- run_tester