Skip to content

refactor: make switch styling similar to checkbox #1981

refactor: make switch styling similar to checkbox

refactor: make switch styling similar to checkbox #1981

Workflow file for this run

name: CI
on: push
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 9.x
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- run: pnpm install
- run: pnpm build:ci
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 9.x
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- run: pnpm install
- run: pnpm lint:prod
TSC:
name: Check types
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 9.x
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- run: pnpm install
# Build the types for the scss files and make sure they are up to date
- name: Check scss types are up to date
run: pnpm build:scss:types --listDifferent
- run: pnpm tsc
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 9.x
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- run: pnpm install
- run: pnpm test:prod