mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 07:39:02 +02:00
23 lines
448 B
YAML
23 lines
448 B
YAML
version: 2.1
|
|
orbs:
|
|
node: circleci/node@1.1.6
|
|
coveralls: coveralls/coveralls@1.0.6
|
|
|
|
jobs:
|
|
build-and-test:
|
|
executor:
|
|
name: node/default
|
|
steps:
|
|
- checkout
|
|
- node/with-cache:
|
|
steps:
|
|
- run: npm install
|
|
- run: npm run lint
|
|
- run: npm run typecheck
|
|
- run: npm run test:coverage
|
|
- coveralls/upload
|
|
workflows:
|
|
build-and-test:
|
|
jobs:
|
|
- build-and-test
|