chore: remove cypress ci action #6598
This file contains hidden or 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: Package size | |
| on: pull_request | |
| jobs: | |
| package-size: | |
| name: Check package sizes | |
| runs-on: ubuntu-latest | |
| env: | |
| NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: nrwl/nx-set-shas@v4 | |
| - name: Setup Node.js 20.5 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.5.x | |
| - uses: zahnster/[email protected] | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| build-script: "build:js" | |
| # only do common js files, no need to double count files | |
| pattern: "{**/dist/**/*.js,./packages/paste-icons/cjs/**/*.js}" | |
| exclude: "{**/*.map,**/node_modules/**,**/*.es.js,**/*.es6.js,**/*.debug.js,**/*.debug.es.js}" |