Skip to content

Changed btn color and fixed Tooltips #16

Changed btn color and fixed Tooltips

Changed btn color and fixed Tooltips #16

Workflow file for this run

name: Checks and build analysis
on:
pull_request:
jobs:
ci:
name: Package Size Report
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Set up pnpm
uses: pnpm/action-setup@v2
with:
version: 8.10.0
- name: Install dependencies
run: pnpm install
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Package size report
uses: pkg-size/action@v1
with:
build-command: pnpm build
display-size: gzip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}