mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
441 B
26 lines
441 B
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- production
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- uses: actions/setup-node@main
|
|
with:
|
|
node-version: 'current'
|
|
check-latest: true
|
|
|
|
- name: npm run lint
|
|
run: |
|
|
npm config set fund false
|
|
cd src
|
|
npm ci
|
|
npm run lint
|
|
|