Skip to content

[MLC-41] repo: Update lint action #39

[MLC-41] repo: Update lint action

[MLC-41] repo: Update lint action #39

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
lint:
name: Lint
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