chore(demo-playwright): add Playwright
#1559
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: ⚙️ Bundle size | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [synchronize, opened, reopened] | |
env: | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
jobs: | |
tracking: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup global variables | |
uses: ./.github/actions/variables | |
- name: Setup Node.js and Cache | |
uses: ./.github/actions/nodejs | |
- run: npx nx build demo | |
- name: Run BundleMon | |
continue-on-error: true | |
run: npx bundlemon | |
env: | |
CI_COMMIT_SHA: ${{ env.CI_COMMIT_SHA }} |