Experiment with Temporal API #32
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: Size limit | |
on: | |
pull_request: | |
branches: [ main ] | |
permissions: | |
pull-requests: write | |
jobs: | |
size: | |
runs-on: ubuntu-latest | |
env: | |
CI_JOB_NUMBER: 1 | |
strategy: | |
matrix: | |
node-version: [20] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use pnpm and install dependencies | |
uses: pnpm/action-setup@v2 | |
- run: pnpm install --no-frozen-lockfile | |
- name: Use Size limit | |
uses: andresz1/size-limit-action@dd31dce7dcc72a041fd3e49abf0502b13fc4ce05 # support for pnpm | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
skip_step: build | |
package_manager: pnpm |