feat(elements): live showcase component & page #2540
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: Quality Control | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
qc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Track master branch to make nx affected work | |
run: | | |
git branch --track main origin/master | |
- name: Install dependencies | |
uses: ./.github/workflows/dependencies-install | |
- name: Store Playwright's Version | |
run: | | |
PLAYWRIGHT_VERSION=$(npx playwright -V | awk '{ print $2 }') | |
echo "Playwright's Version: $PLAYWRIGHT_VERSION" | |
echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV | |
- name: Cache Playwright Browsers for Playwright's Version | |
id: cache-playwright-browsers | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ms-playwright | |
key: playwright-browsers-${{ env.PLAYWRIGHT_VERSION }} | |
- name: Setup Playwright | |
if: steps.cache-playwright-browsers.outputs.cache-hit != 'true' | |
run: yarn playwright install --with-deps | |
- name: Check format | |
run: yarn format | |
- name: Check lint | |
run: yarn lint:ci | |
env: | |
NX_REJECT_UNKNOWN_LOCAL_CACHE: 0 | |
- name: Build all projects | |
run: yarn build | |
env: | |
NX_REJECT_UNKNOWN_LOCAL_CACHE: 0 | |
- name: Check if there are changes | |
uses: NathanielHill/[email protected] | |
- name: Test all projects | |
id: test_projects | |
run: yarn test | |
env: | |
NX_REJECT_UNKNOWN_LOCAL_CACHE: 0 | |
- name: Upload playwright trace | |
if: ${{ failure() && steps.test_projects.conclusion == 'failure' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playwright-traces | |
path: dist/.playwright/packages/storybook/test-output | |
- name: Upload build artifacts for canary release | |
uses: ./.github/workflows/artifacts-upload | |
with: | |
upload-core-artifacts: true | |
upload-example-artifacts: ${{ github.ref == 'refs/heads/master' }} | |
upload-storybook-artifact: true | |
unicorn: | |
needs: qc | |
uses: ./.github/workflows/deploy-unicorn.yml |