wishthis/node_modules/gulp-copy/.circleci/config.yml

24 lines
341 B
YAML
Raw Normal View History

2022-01-21 08:28:41 +00:00
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