Skip to content

...

... #87

Workflow file for this run

name: Develop Workflow
on:
push:
branches:
- '*'
- '!live'
- '!main'
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm ci
- name: Run ESLint
run: npm run lint