This commit is contained in:
janis
2023-04-24 17:05:40 +02:00
parent 5e406e99d6
commit 55023dd46d
2 changed files with 39 additions and 22 deletions

View File

@@ -1,24 +1,24 @@
version: 2.1
orbs:
node: circleci/node@5.1.0
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:
- .
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:
- .