Skip to content

Merge pull request #565 from tswfi/pager_scroll_to_top_of_products #826

Merge pull request #565 from tswfi/pager_scroll_to_top_of_products

Merge pull request #565 from tswfi/pager_scroll_to_top_of_products #826

Workflow file for this run

name: Lint
on: [ push, pull_request ]
jobs:
stylelint:
name: SCSS Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Lint scss
run: npm ci && npm run scss-lint
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Lint js
run: touch ./webpack/.env && npm ci && npm run lint