Skip to content

Exclude CJK characters from default font build, reducing bundle size … #12

Exclude CJK characters from default font build, reducing bundle size …

Exclude CJK characters from default font build, reducing bundle size … #12

Workflow file for this run

name: Build, lint, & test
on:
push:
branches: main
pull_request:
branches: main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: "package-lock.json"
- run: npm ci
- run: npm run lint:eslint
- run: npm run lint:prettier
- run: npm run lint:types
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: "package-lock.json"
- run: npm ci
- run: npm run build
- run: npm run test