Skip to content

Commit

Permalink
docs: updates on workflows
Browse files Browse the repository at this point in the history
Added information on documentation
  • Loading branch information
ADMSK\AVROGAL1 committed Apr 23, 2021
1 parent d27994c commit 29fb2a2
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@ task:
MEMORY: 4G # 256M-24G without compute credits, 256M-90G with
node_modules_cache:
folder: node_modules
fingerprint_script: cat package.json
populate_script: npm install
reupload_on_changes: false
fingerprint_script:
- echo $CIRRUS_OS
- node --version
- cat package.json
populate_script:
- npm install
setup_script:
- date
- git clean -xffd --exclude=bin/cache/
Expand All @@ -29,11 +34,31 @@ task:
- name: Install
install_script: npm install
- name: Build
depends_on:
- Install
build_script: npm run lerna:build
container:
CPU: 1
memory: 8G
- name: Test
depends_on:
- Install
- Build
container:
matrix:
- image: node:latest
- image: node:lts
test_script: npm run lerna:test
- name: Check
depends_on:
- Install
- Build
check_script: npm run lerna:check
- name: Publish
depends_on:
- Install
- Build
- Test
- Check
only_if: $CIRRUS_BRANCH == "release"
publish_script: npm run lerna:publish

0 comments on commit 29fb2a2

Please sign in to comment.