Skip to content

Feat: typography

Feat: typography #905

Workflow file for this run

name: Pull request
on:
pull_request:
branches: [master, dev]
push:
branches:
- dev
jobs:
check:
name: Lint and build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Build sass
run: npm run build:sass
- name: Build typescript
run: npm run build:typescript
test:
name: Test
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install dependencies
run: npm install
- name: Upload to Chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
buildScriptName: build:storybook