element-web/.buildkite/pipeline.yaml

83 lines
2.3 KiB
YAML
Raw Normal View History

2019-03-14 00:25:06 +00:00
steps:
- label: ":eslint: JS Lint"
2019-03-14 00:25:06 +00:00
command:
2020-01-27 16:05:41 +00:00
- "echo '--- Fetching Dependencies'"
- "./scripts/fetch-develop.deps.sh --depth 1"
2020-01-08 23:14:01 +00:00
- "yarn install"
- "yarn lint:js"
2019-03-14 00:25:06 +00:00
plugins:
- docker#v3.0.1:
image: "node:12"
# This layer doesn't have a TypeScript linter. This comment is to remind TravisR to fix that.
# - label: ":eslint: TS Lint"
# command:
# - "echo '--- Install js-sdk'"
# - "./scripts/ci/install-deps.sh"
# - "yarn lint:ts"
# plugins:
# - docker#v3.0.1:
# image: "node:12"
- label: ":eslint: Types Lint"
command:
2020-01-08 23:14:01 +00:00
- "yarn install"
- "yarn lint:types"
plugins:
- docker#v3.0.1:
image: "node:12"
- label: "🛠 Build"
command:
- "echo '--- Fetching Dependencies'"
- "./scripts/fetch-develop.deps.sh --depth 1"
2020-01-08 23:14:01 +00:00
- "yarn install"
- "echo '+++ Building Project'"
- "yarn build"
plugins:
- docker#v3.0.1:
image: "node:12"
2019-03-14 00:25:06 +00:00
2020-01-15 20:00:50 +00:00
- label: ":jest: Tests"
agents:
# We use a medium sized instance instead of the normal small ones because
# webpack loves to gorge itself on resources.
queue: "medium"
2019-03-14 00:25:06 +00:00
command:
- "echo '--- Fetching Dependencies'"
2019-03-14 00:25:06 +00:00
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "yarn build:genfiles" # We have to build the app to make sure the autogenned files are present
- "echo '+++ Running Tests'"
2019-03-14 00:25:06 +00:00
- "yarn test"
plugins:
- docker#v3.0.1:
image: "node:10"
2019-04-26 11:21:21 +00:00
2019-07-11 18:45:06 +00:00
- label: "🌐 i18n"
command:
2019-07-11 18:47:50 +00:00
- "echo '--- Fetching Dependencies'"
- "./scripts/fetch-develop.deps.sh --depth 1"
2019-07-11 18:45:06 +00:00
- "yarn install"
2019-07-11 18:47:50 +00:00
- "echo '+++ Testing i18n output'"
2019-07-11 18:45:06 +00:00
- "yarn diff-i18n"
plugins:
- docker#v3.0.1:
image: "node:10"
- wait: ~ # this wait is to perform deploy to /develop only if all other steps passed
continue_on_failure: false
- label: ":hammer: Package"
command:
- "echo '--- Fetching Dependencies'"
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "echo '+++ Packaging'"
- "./scripts/ci_package.sh"
branches: "develop"
artifact_paths: "dist/riot-*.tar.gz"
plugins:
- docker#v3.0.1:
image: "node:10"