111 lines
2.1 KiB
YAML
111 lines
2.1 KiB
YAML
version: 2
|
|
|
|
refs:
|
|
container: &container
|
|
docker:
|
|
- image: node:16
|
|
working_directory: ~/repo
|
|
steps:
|
|
- &Versions
|
|
run:
|
|
name: Versions
|
|
command: node -v && npm -v && yarn -v
|
|
- &Install
|
|
run:
|
|
name: Install Dependencies
|
|
command: yarn install --pure-lockfile
|
|
- &Lint
|
|
run:
|
|
name: Lint
|
|
command: yarn lint
|
|
- &Build
|
|
run:
|
|
name: Build
|
|
command: yarn build
|
|
- &Build_binaries
|
|
run:
|
|
name: Build binaries
|
|
command: yarn build:binaries
|
|
- &Test
|
|
run:
|
|
name: Test
|
|
command: yarn test
|
|
- &Post_to_dev_null
|
|
run:
|
|
name: 'Post to Slack #dev-null'
|
|
command: npx ci-scripts slack --channel="dev-null"
|
|
|
|
jobs:
|
|
all:
|
|
<<: *container
|
|
steps:
|
|
- checkout
|
|
- *Versions
|
|
- *Install
|
|
- *Lint
|
|
- *Build
|
|
- *Build_binaries
|
|
- *Test
|
|
- *Post_to_dev_null
|
|
|
|
master:
|
|
<<: *container
|
|
steps:
|
|
- checkout
|
|
- *Versions
|
|
- *Install
|
|
- *Lint
|
|
- *Build
|
|
- *Build_binaries
|
|
- *Test
|
|
- *Post_to_dev_null
|
|
- run:
|
|
name: Release
|
|
command: yarn release
|
|
- *Post_to_dev_null
|
|
|
|
nightly:
|
|
<<: *container
|
|
steps:
|
|
- checkout
|
|
- *Versions
|
|
- *Install
|
|
- *Lint
|
|
- *Build
|
|
- *Build_binaries
|
|
- *Test
|
|
- *Post_to_dev_null
|
|
- run:
|
|
name: Post to Slack on FAILURE
|
|
command: npx ci slack --channel="dev" --text="** nightly build failed :scream:" --icon_emoji=tired_face
|
|
when: on_fail
|
|
|
|
workflows:
|
|
version: 2
|
|
all:
|
|
jobs:
|
|
- all:
|
|
context: common-env-vars
|
|
filters:
|
|
branches:
|
|
ignore:
|
|
- master
|
|
- gh-pages
|
|
master:
|
|
jobs:
|
|
- master:
|
|
context: common-env-vars
|
|
filters:
|
|
branches:
|
|
only: master
|
|
nightly:
|
|
triggers:
|
|
- schedule:
|
|
cron: '0 1 * * *'
|
|
filters:
|
|
branches:
|
|
only: master
|
|
jobs:
|
|
- nightly:
|
|
context: common-env-vars
|