mirror of
https://github.com/dreamstarsky/runbin.git
synced 2026-05-15 22:33:09 +00:00
89 lines
2.1 KiB
YAML
89 lines
2.1 KiB
YAML
version: 2
|
|
|
|
aliases:
|
|
# -------------------------
|
|
# ALIASES: Caches
|
|
# -------------------------
|
|
- &restore-deps-cache
|
|
key: deps-cache-{{ checksum "package-lock.json" }}
|
|
|
|
- &save-deps-cache
|
|
key: deps-cache-{{ checksum "package-lock.json" }}
|
|
paths:
|
|
- ~/client-js/node_modules
|
|
|
|
# -------------------------
|
|
# ALIASES: Branch Filters
|
|
# -------------------------
|
|
- &filter-only-master
|
|
branches:
|
|
only: master
|
|
- &filter-only-semantic-pr
|
|
branches:
|
|
only: /^(pull|dependabot|fix|feat)\/.*$/
|
|
|
|
defaults: &defaults
|
|
working_directory: ~/client-js
|
|
docker:
|
|
- image: cimg/node:18.13.0
|
|
|
|
jobs:
|
|
test:
|
|
<<: *defaults
|
|
steps:
|
|
- checkout
|
|
- restore_cache: *restore-deps-cache
|
|
- run: npm install
|
|
- run: npm install codecov
|
|
- run: npm test
|
|
- run: ./node_modules/.bin/codecov
|
|
- save_cache: *save-deps-cache
|
|
|
|
build:
|
|
<<: *defaults
|
|
steps:
|
|
- checkout
|
|
- restore_cache: *restore-deps-cache
|
|
- run: npm install
|
|
- run: npm run build
|
|
- save_cache: *save-deps-cache
|
|
|
|
release:
|
|
<<: *defaults
|
|
steps:
|
|
- checkout
|
|
- restore_cache: *restore-deps-cache
|
|
- run: npm install
|
|
- run: npm run build
|
|
- run: npm install semantic-release @semantic-release/changelog @semantic-release/git @semantic-release/github @semantic-release/npm @semantic-release/commit-analyzer @semantic-release/release-notes-generator @qiwi/semantic-release-gh-pages-plugin
|
|
- run: git checkout .
|
|
- run: ./node_modules/.bin/semantic-release
|
|
- save_cache: *save-deps-cache
|
|
|
|
workflows:
|
|
version: 2
|
|
analysis:
|
|
jobs:
|
|
- test:
|
|
filters: *filter-only-semantic-pr
|
|
- build:
|
|
filters: *filter-only-semantic-pr
|
|
|
|
release:
|
|
jobs:
|
|
- test:
|
|
filters: *filter-only-master
|
|
- build:
|
|
filters: *filter-only-master
|
|
- hold:
|
|
filters: *filter-only-master
|
|
type: approval
|
|
requires:
|
|
- test
|
|
- build
|
|
- release:
|
|
filters: *filter-only-master
|
|
context: open-rpc-deployer
|
|
requires:
|
|
- hold
|