Skip to content

feat: typography standard colors #1546

feat: typography standard colors

feat: typography standard colors #1546

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: Install dependencies
shell: bash
run: yarn install --immutable
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Format
run: yarn format
- name: Test
run: yarn test