Adding OptionMenu component #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Checks | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
inferno: | |
name: inferno lib | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./KaiUIngInferno | |
steps: | |
- uses: actions/checkout@v1 | |
- name: yarn install | |
run: | | |
yarn | |
- name: Check Typescript Types | |
run: | | |
yarn run check | |
- name: Run Typescript Lint | |
run: | | |
yarn run lint | |
- name: Build | |
run: | | |
yarn build |