Skip to content

fix: remove multiplication with 16 in remToUnitless #81

fix: remove multiplication with 16 in remToUnitless

fix: remove multiplication with 16 in remToUnitless #81

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install Dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
continue-on-error: true
- name: Build
run: pnpm build
env:
FIGMA_PERSONAL_ACCESS_TOKEN: ${{ secrets.FIGMA_PERSONAL_ACCESS_TOKEN }}
FIGMA_FILE: ${{ vars.FIGMA_FILE }}
FIGMA_USE_CACHE: ${{ vars.FIGMA_USE_CACHE }}
- name: Test
run: pnpm test