mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 05:14:23 +00:00
24 lines
488 B
YAML
24 lines
488 B
YAML
version: 2.1
|
|
orbs:
|
|
node: circleci/node@5.1.0
|
|
|
|
jobs:
|
|
build_and_test:
|
|
executor: node/default
|
|
steps:
|
|
- checkout
|
|
- node/install-packages:
|
|
pkg-manager: npm
|
|
- run:
|
|
command: npm run build
|
|
name: Build app
|
|
- run:
|
|
command: npm run test
|
|
name: Run tests
|
|
- run:
|
|
command: npm run build-website
|
|
name: Build documentation
|
|
- persist_to_workspace:
|
|
root: ~/project
|
|
paths:
|
|
- . |