wg-easy/.github/workflows/lint.yml

24 lines
342 B
YAML

name: Lint
on:
push:
branches:
- master
- production
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '18'
- run: |
cd src
npm ci
npm run lint