Skip to content

Added home icon to top level of breadcrub #1633

Added home icon to top level of breadcrub

Added home icon to top level of breadcrub #1633

Workflow file for this run

name: Lint check
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js
uses: actions/[email protected]
with:
node-version: '16.x'
- name: Cache node modules
uses: actions/[email protected]
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Deps
run: npm install
- name: eslint
run: npm run test:lint -w packages/ui-lib