feat(ARCH-720): use design-tokens #5843
Workflow file for this run
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
name: PR playground CI | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
deployments: read | |
pull-requests: write # needed to write comment in PR | |
statuses: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build and deploy playground | |
environment: pull_request_unsafe | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3 | |
- name: Use Node.js | |
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0 | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org/" | |
scope: "@talend" | |
cache: "yarn" | |
- name: Install and build playground | |
id: build | |
run: | | |
yarn install --frozen-lockfile | |
yarn global add surge | |
echo "$(yarn global bin)" >> $GITHUB_PATH | |
yarn pre-release | |
yarn workspace @talend/ui-playground run test:demo:umd | |
- name: deploy if master | |
if: github.ref == 'refs/heads/master' | |
run: | | |
rm -rf .static | |
mkdir .static | |
mkdir .static/playground | |
cp -R packages/playground/dist/* .static/playground | |
surge --project .static --domain "talend-playground.surge.sh" | |
env: | |
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }} | |
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} | |
- name: deploy if PR | |
if: github.ref != 'refs/heads/master' | |
run: | | |
rm -rf .static | |
mkdir .static | |
mkdir .static/playground | |
cp -R packages/playground/dist/* .static/playground | |
surge --project .static --domain "${{ github.event.number }}.talend-playground.surge.sh" | |
env: | |
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }} | |
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} | |
check: | |
runs-on: ubuntu-latest | |
name: Check size | |
environment: pull_request_unsafe | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3 | |
- name: Check UMD files size diff | |
uses: preactjs/compressed-size-action@8119d3d31b6e57b167e09c81dfa877eada3bcb35 #v2.5.0 | |
if: github.ref != 'refs/heads/master' | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
build-script: "pre-release" | |
pattern: "./packages/*/dist/*.{js,css,json}" | |
exclude: "{**/*.html,**/*.map,**/node_modules/**}" | |
compression: "none" | |
minimum-change-threshold: 100 |