-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat--update-lint-config
- Loading branch information
Showing
2 changed files
with
182 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
language: node_js | ||
dist: jammy | ||
cache: | ||
npm: false | ||
if: type NOT IN (pull_request) | ||
env: | ||
global: | ||
- PR_TITLE=$(curl https://github.com/${TRAVIS_REPO_SLUG}/pull/${TRAVIS_PULL_REQUEST} 2> /dev/null | grep "title" | head -1) | ||
stages: | ||
- Prebuild | ||
- Build | ||
- Docs | ||
- Test | ||
- Screenshots - Create | ||
- Screenshots - Upload | ||
- Deploy | ||
jobs: | ||
include: | ||
- name: 'Lint' | ||
stage: 'Prebuild' | ||
script: yarn lint | ||
if: commit_message =~ /^((?!\[only argos\]).)*$/ # skipped if commit message contains "[only argos]" | ||
- name: 'Generate Sprite and Palette' | ||
stage: 'Prebuild' | ||
script: yarn makeSpriteAndPalette | ||
workspaces: | ||
create: | ||
name: sprite-palette-binaries | ||
paths: | ||
- ./react/Icon/icons-sprite.js | ||
- ./react/palette.js | ||
- name: 'Build JS' | ||
stage: 'Build' | ||
script: | ||
- yarn build | ||
workspaces: | ||
use: | ||
- sprite-palette-binaries | ||
create: | ||
name: js-binaries | ||
paths: | ||
- ./transpiled | ||
- name: 'Build CSS' | ||
stage: 'Build' | ||
script: | ||
- yarn build:css:all | ||
workspaces: | ||
create: | ||
name: css-binaries | ||
paths: | ||
- ./dist | ||
- name: 'Build docs' | ||
stage: 'Docs' | ||
script: | ||
- yarn build:doc:react | ||
- yarn build:doc:kss | ||
workspaces: | ||
use: | ||
- sprite-palette-binaries | ||
- js-binaries | ||
- css-binaries | ||
create: | ||
name: docs-binaries | ||
paths: | ||
- ./build | ||
- name: 'Tests without snapshots' | ||
stage: 'Test' | ||
script: | ||
- yarn test:noSnapshots | ||
workspaces: | ||
use: | ||
- sprite-palette-binaries | ||
- js-binaries | ||
- css-binaries | ||
if: commit_message =~ /^((?!\[only argos\]).)*$/ # skipped if commit message contains "[only argos]" | ||
- name: 'Tests snapshots' | ||
stage: 'Test' | ||
script: | ||
- yarn test:snapshots | ||
workspaces: | ||
use: | ||
- sprite-palette-binaries | ||
- js-binaries | ||
- css-binaries | ||
if: commit_message =~ /^((?!\[only argos\]).)*$/ # skipped if commit message contains "[only argos]" | ||
- name: 'Bundlemon' | ||
stage: 'Test' | ||
script: | ||
- yarn bundlemon | ||
workspaces: | ||
use: | ||
- sprite-palette-binaries | ||
- js-binaries | ||
- css-binaries | ||
if: commit_message =~ /^((?!\[only argos\]).)*$/ # skipped if commit message contains "[only argos]" | ||
# - name: '[Argos] Create desktop screenshots' | ||
# stage: 'Screenshots - Create' | ||
# script: | | ||
# if [[ "${PR_TITLE}" != *"[skip argos]"* ]]; then | ||
# mkdir ./screenshots | ||
# yarn add puppeteer@"21.11.0" --dev --exact --no-lockfile | ||
# yarn screenshots --mode react --viewport desktop --screenshot-dir ./screenshots/reactDesktop | ||
# fi | ||
# workspaces: | ||
# use: | ||
# - sprite-palette-binaries | ||
# - js-binaries | ||
# - css-binaries | ||
# - docs-binaries | ||
# create: | ||
# name: screenshots-desktop-binaries | ||
# paths: | ||
# - ./screenshots | ||
# - name: '[Argos] Create mobile screenshots' | ||
# stage: 'Screenshots - Create' | ||
# script: | | ||
# if [[ "${PR_TITLE}" != *"[skip argos]"* ]]; then | ||
# mkdir ./screenshots | ||
# yarn add puppeteer@"21.11.0" --dev --exact --no-lockfile | ||
# yarn screenshots --mode react --viewport 300x600 --screenshot-dir ./screenshots/reactMobile | ||
# fi | ||
# workspaces: | ||
# use: | ||
# - sprite-palette-binaries | ||
# - js-binaries | ||
# - css-binaries | ||
# - docs-binaries | ||
# create: | ||
# name: screenshots-mobile-binaries | ||
# paths: | ||
# - ./screenshots | ||
# - name: '[Argos] Create kss screenshots' | ||
# stage: 'Screenshots - Create' | ||
# script: | | ||
# if [[ "${PR_TITLE}" != *"[skip argos]"* ]]; then | ||
# mkdir ./screenshots | ||
# yarn add puppeteer@"21.11.0" --dev --exact --no-lockfile | ||
# yarn screenshots --mode kss --screenshot-dir ./screenshots/kss | ||
# fi | ||
# workspaces: | ||
# use: | ||
# - sprite-palette-binaries | ||
# - js-binaries | ||
# - css-binaries | ||
# - docs-binaries | ||
# create: | ||
# name: screenshots-kss-binaries | ||
# paths: | ||
# - ./screenshots | ||
# - name: '[Argos] Upload all screenshots' | ||
# stage: 'Screenshots - Upload' | ||
# script: | | ||
# if [[ "${PR_TITLE}" != *"[skip argos]"* ]]; then | ||
# yarn argos:upload --parallel screenshots/reactDesktop/ --token $ARGOS_TOKEN --parallel-total 3 --parallel-nonce $TRAVIS_BUILD_ID --ignore '' | ||
# yarn argos:upload --parallel screenshots/reactMobile/ --token $ARGOS_TOKEN --parallel-total 3 --parallel-nonce $TRAVIS_BUILD_ID --ignore '' | ||
# yarn argos:upload --parallel screenshots/kss/ --token $ARGOS_TOKEN --parallel-total 3 --parallel-nonce $TRAVIS_BUILD_ID --ignore '' | ||
# fi | ||
# workspaces: | ||
# use: | ||
# - sprite-palette-binaries | ||
# - js-binaries | ||
# - css-binaries | ||
# - docs-binaries | ||
# - screenshots-desktop-binaries | ||
# - screenshots-mobile-binaries | ||
# - screenshots-kss-binaries | ||
- name: 'Deploy' | ||
stage: 'Deploy' | ||
script: 'true' | ||
if: commit_message =~ /^((?!\[only argos\]).)*$/ # skipped if commit message contains "[only argos]" | ||
workspaces: | ||
use: | ||
- sprite-palette-binaries | ||
- js-binaries | ||
- css-binaries | ||
- docs-binaries | ||
deploy: | ||
provider: script | ||
skip-cleanup: true | ||
script: yarn deploy:doc -- --username cozycloud --email [email protected] --repo https://cozy-bot:[email protected]/cozy/cozy-ui.git && yarn semantic-release | ||
on: | ||
branch: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters