chore(deps): bump eslint-config-turbo from 1.13.2 to 2.0.7 #5306
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: Package size | |
on: pull_request | |
jobs: | |
package-size: | |
name: Check package sizes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js 22.1 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 22.1.x | |
- uses: preactjs/compressed-size-action@v2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
build-script: "build" | |
# only do common js files, no need to double count files | |
pattern: "{**/dist/**/*.js, ./packages/**/dist/*.js}" | |
exclude: "{**/*.map,**/node_modules/**,**/*.mjs}" |