Skip to content

Image lens

Image lens #1

Workflow file for this run

name: ESLint
on:
push:
branches:
- main # adjust with your default branch if it's not "main"
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # adjust with your desired Node.js version
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run ESLint
run: yarn lint