Skip to content

Merge pull request #202 from patrollings/patch-1 #253

Merge pull request #202 from patrollings/patch-1

Merge pull request #202 from patrollings/patch-1 #253

Workflow file for this run

name: Main CI Workflow
on: [push, pull_request]
jobs:
run-ci:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Run Type Check & Linters
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install dependencies (with cache)
uses: bahmutov/npm-install@v1
with:
useLockFile: false
- name: Check types
run: yarn check-types
- name: Build package
run: yarn build
- name: Build storybook
run: yarn build-storybook