Skip to content

Update GitHub Actions workflow to trigger on manual dispatch and add … #10

Update GitHub Actions workflow to trigger on manual dispatch and add …

Update GitHub Actions workflow to trigger on manual dispatch and add … #10

Workflow file for this run

name: ESLint
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install modules
run: npm i
- name: Run ESLint
run: npm run lint