mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 15:49:01 +02:00
17 lines
306 B
YAML
17 lines
306 B
YAML
version: 2.1
|
|
orbs:
|
|
node: circleci/node@1.1.6
|
|
jobs:
|
|
build-and-test:
|
|
executor:
|
|
name: node/default
|
|
steps:
|
|
- checkout
|
|
- node/with-cache:
|
|
steps:
|
|
- run: npm install
|
|
- run: npm test
|
|
workflows:
|
|
build-and-test:
|
|
jobs:
|
|
- build-and-test |