chore(deps): bump postcss, @storybook/addon-essentials and @storybook/html #78
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: Chart Lint Code Base | |
on: pull_request | |
jobs: | |
lint: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
env: | |
WORKING_DIRECTORY: ./apps/chart | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v2 | |
- name: Use Node.js 15.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '15.x' | |
- name: npm install | |
run: | | |
npm install | |
- name: npm install(toast.ui-chart) | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
run: | | |
npm install | |
- name: eslint | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
run: | | |
npm run lint |