DRAFT PNPM sync with Master #6662
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@3df4ab11eba7bda6032a0b82a6bb43b11571feac #v4.0.0 | |
- name: Use Node.js | |
uses: ./.github/actions/setup-node | |
- name: Install and build playground | |
id: build | |
run: | | |
pnpm install --frozen-lockfile | |
pnpm add -g surge | |
pnpm pre-release | |
pnpm --filter @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 | |
npx 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 | |
npx 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@3df4ab11eba7bda6032a0b82a6bb43b11571feac #v4.0.0 | |
- name: Use Node.js | |
uses: ./.github/actions/setup-node | |
- 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 |