mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
17 lines
No EOL
306 B
YAML
17 lines
No EOL
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 |