Skip to content

better messages displayed #442

better messages displayed

better messages displayed #442

Workflow file for this run

name: Lint Checks
on:
push:
jobs:
run-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: add node toolchain
uses: actions/[email protected]
with:
node-version: 16.x
- name: cache node_modules
uses: actions/cache@v2
with:
path: |
./node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: install node dependencies
run: yarn
- name: run linting checks
run: yarn lint