wishthis/node_modules/gulp-copy/.circleci/config.yml
2022-01-21 09:28:41 +01:00

23 lines
341 B
YAML

version: 2
jobs:
build:
machine: true
steps:
- checkout
- run: npm install
test:
machine: true
steps:
- checkout
- run: npm install
- run: npm run lint
- run: npm run prettier-check
- run: npm test
workflows:
version: 2
build_and_test:
jobs:
- build
- test