[MLC-19] app: Add overflow to div and allow for scrolling to bottom #11
Workflow file for this run
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: PR Checks | |
on: [pull_request] | |
jobs: | |
lint: | |
name: Lint App | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install App Deps | |
run: npm i --ignore-scripts | |
working-directory: ./app | |
- name: Lint App | |
working-directory: ./app | |
run: npm run lint |