chore(deps-dev): bump @size-limit/preset-small-lib from 11.1.5 to 11.1.6 #252
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 and test on Node ${{ matrix.node }} and ${{ matrix.os }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Install Bun | |
uses: oven-sh/[email protected] | |
- name: Install dependencies | |
run: bun install | |
- name: Test | |
run: bun run test --ci --coverage --maxWorkers=2 | |
- name: Build | |
run: bun run build |