Skip to content

Merge pull request #37 from theaminuli/aminul/dev #28

Merge pull request #37 from theaminuli/aminul/dev

Merge pull request #37 from theaminuli/aminul/dev #28

Workflow file for this run

name: Run checks
on:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v4.1.0
with:
node-version-file: '.nvmrc'
cache: npm
- name: Install Dependencies
run: npm install --legacy-peer-deps

Check failure on line 20 in .github/workflows/pr-checks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-checks.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: Run JS Lint
if: success() || failure()
run: npm run lint:js
- name: Run CSS Lint
if: success() || failure()
run: npm run lint:css
- name: Run package.json Lint
if: success() || failure()
run: npm run lint:pkg-json