Bump @size-limit/preset-small-lib from 9.0.0 to 10.0.2 #864
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: CI | |
on: [push] | |
jobs: | |
build: | |
name: Build, lint, and test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Use Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install deps | |
run: bun install | |
- name: Lint | |
run: bun lint && bun format | |
- name: Test | |
run: | |
bun test | |
- name: Build | |
run: bun run build |