Skip to content

build: minor name tweak #13

build: minor name tweak

build: minor name tweak #13

Workflow file for this run

name: tests:lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npx -y eslint **/*.js --no-config-lookup
name: Run ESLint with defaults