feat(carrier): [CAR-6607] Added MUI V5 theme provider #1505
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 | |
on: | |
pull_request: | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: umidbekk/actions/prepare-node-repo@v2 | |
with: | |
cache-key: yarn-v4 | |
node-version: 20 | |
- run: yarn check:types | |
- run: yarn lint | |
- run: yarn test | |
- uses: codecov/[email protected] | |
- uses: EndBug/add-and-commit@v7 | |
if: ${{ failure() && github.actor == 'renovate' }} | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: umidbekk/actions/prepare-node-repo@v2 | |
with: | |
cache-key: yarn-v4 | |
node-version: 20 | |
- uses: superdispatch/actions/build-size/limit@v1 | |
with: | |
install_command: 'yarn install' | |
build_command: 'yarn build' | |
preview: | |
runs-on: ubuntu-latest | |
outputs: | |
deploy-url: ${{ steps.deploy.outputs.details_url }} | |
steps: | |
- uses: umidbekk/actions/prepare-node-repo@v2 | |
with: | |
cache-key: yarn-v4 | |
node-version: 20 | |
- run: yarn storybook:build | |
- run: yarn playroom:build | |
- id: deploy | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
target: superdispatch-ui | |
channelId: ${{ github.event.number }} | |
repoToken: ${{ secrets.GITHUB_TOKEN }} | |
projectId: ${{ secrets.FIREBASE_PROJECT }} | |
firebaseServiceAccount: ${{ secrets.FIREBASE_HOSTING_SERVICE_ACCOUNT_JSON }} | |
firebaseToolsVersion: '12.9.1' | |
e2e: | |
needs: | |
- checks | |
- preview | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: umidbekk/actions/npm/install@v2 | |
with: | |
cache-key: yarn-v4 | |
node-version: 20 | |
- run: yarn cypress install | |
- run: yarn cypress run | |
env: | |
CYPRESS_HOST: ${{ needs.preview.outputs.deploy-url }} | |
visual-testing: | |
needs: | |
- checks | |
- preview | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v4 | |
- uses: umidbekk/actions/npm/install@v2 | |
with: | |
cache-key: yarn-v4 | |
node-version: 20 | |
- uses: superdispatch/actions/[email protected] | |
with: | |
command: yarn test-visual-ci ${{ needs.preview.outputs.deploy-url }} | |
update-command: yarn visual-update-ci ${{ needs.preview.outputs.deploy-url }} |