chore(deps): update dependency eslint to v9 #10
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: (Types) Size limit check | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'types/**' | |
jobs: | |
size: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['18.x', '20.x'] | |
env: | |
CI_JOB_NUMBER: 1 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Setting up bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Installing dependencies | |
run: bun install | |
working-directory: types | |
- name: Check size limit | |
uses: andresz1/size-limit-action@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
skip_step: install | |
directory: types |