riot-web/.buildkite/pipeline.yaml

77 lines
1.9 KiB
YAML
Raw Normal View History

2019-03-14 01:25:06 +01:00
steps:
- label: ":eslint: JS Lint"
2019-03-14 01:25:06 +01:00
command:
2020-01-09 00:14:01 +01:00
- "yarn install"
- "yarn lint:js"
2019-03-14 01:25:06 +01: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-09 00:14:01 +01: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-09 00:14:01 +01:00
- "yarn install"
- "echo '+++ Building Project'"
- "yarn build"
plugins:
- docker#v3.0.1:
image: "node:12"
2019-03-14 01:25:06 +01:00
2020-01-15 21:00:50 +01: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 01:25:06 +01:00
command:
- "echo '--- Fetching Dependencies'"
2019-03-14 01:25:06 +01:00
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "echo '+++ Running Tests'"
2019-03-14 01:25:06 +01:00
- "yarn test"
plugins:
- docker#v3.0.1:
image: "node:10"
2019-04-26 13:21:21 +02:00
- label: ":hammer: Package"
2019-04-26 13:21:21 +02:00
command:
- "echo '--- Fetching Dependencies'"
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "echo '+++ Packaging'"
- "./scripts/ci_package.sh"
branches: "develop"
2019-04-26 13:21:21 +02:00
artifact_paths: "dist/riot-*.tar.gz"
plugins:
- docker#v3.0.1:
image: "node:10"
2019-07-11 20:45:06 +02:00
- label: "🌐 i18n"
command:
2019-07-11 20:47:50 +02:00
- "echo '--- Fetching Dependencies'"
- "./scripts/fetch-develop.deps.sh --depth 1"
2019-07-11 20:45:06 +02:00
- "yarn install"
2019-07-11 20:47:50 +02:00
- "echo '+++ Testing i18n output'"
2019-07-11 20:45:06 +02:00
- "yarn diff-i18n"
plugins:
- docker#v3.0.1:
image: "node:10"