Skip to content

reverfting comments in index #246

reverfting comments in index

reverfting comments in index #246

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- develop
push:
branches:
- develop
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dependencies for my-app
working-directory: my-app
run: npm install
- name: Build my-app
working-directory: my-app
run: npm run build
- name: Lint my-app
working-directory: my-app
run: npm run lint