Skip to content

Com 3468

Com 3468 #4588

Workflow file for this run

name: Test 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: 16.18.0
# Install your dependencies
- run: npm ci
# Run ESLint
- run: yarn lint