Skip to content

Com 3719

Com 3719 #5239

Workflow file for this run

name: ESLint
on:
- pull_request
jobs:
build:
name: Run ESLint
runs-on: ubuntu-latest
steps:
# Check out the repository
- uses: actions/checkout@v3
# Install Node.js
- uses: actions/setup-node@v3
with:
node-version: 18.17.0
# Install your dependencies
- run: yarn install
# Run ESLint
- run: yarn lint