Skip to content

Merge pull request #36 from toggle-corp/fix/differential-required-val… #41

Merge pull request #36 from toggle-corp/fix/differential-required-val…

Merge pull request #36 from toggle-corp/fix/differential-required-val… #41

Workflow file for this run

# .github/workflows/chromatic.yml
# name of our action
name: 'CI'
# the event that will trigger the action
on: push
# what the action will do
jobs:
build:
# the operating system it will run on
runs-on: ubuntu-latest
# the list of steps that the action will go through
steps:
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/checkout@v1
- name: Install Dependencies
run: yarn install
- name: 🤞 Run Typecheck 🧪
run: yarn typecheck
working-directory: lib
- name: 🤞 Run Lint 🧪
run: yarn lint
working-directory: lib
- name: 🤞 Run Test 🧪
run: yarn test
working-directory: lib
- name: 🤞 Build 🧪
run: yarn build
working-directory: lib