fix results page scroll on mobile #18
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: π Lint | |
on: push | |
jobs: | |
Deploy-Action: | |
name: π Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Get latest code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Cache npm dependencies | |
uses: actions/cache@v3 | |
id: cache-node-modules | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
- name: π¨ Install Dependencies | |
if: steps.npm-cache.outputs.cache-hit != 'true' | |
run: | | |
npm ci | |
git reset --hard | |
- name: βοΈ Lint and test project | |
run: | | |
npm run lint | |
npm run ts | |
npm run test |