Skip to content

chore: remove scripts-build-cdn from this repository #7791

chore: remove scripts-build-cdn from this repository

chore: remove scripts-build-cdn from this repository #7791

Workflow file for this run

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@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
- name: Use Node.js
uses: ./.github/actions/setup-node
- 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@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
- name: Use Node.js
uses: ./.github/actions/setup-node
- name: Check node version
run: |
node --version
- 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