In a previous PR we used `branch` syntax to trigger the pipeline when a push on `main` was made. This was a mistake and `branches` is the correct syntax that achieves this.
30 lines
622 B
YAML
30 lines
622 B
YAML
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
name: Lint
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Run ShellCheck
|
|
uses: ludeeus/action-shellcheck@2.0.0
|
|
with:
|
|
ignore_paths: >-
|
|
.husky
|
|
- name: Setup Node.js
|
|
id: setup-node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: npm
|
|
- name: Install Dependencies
|
|
id: install
|
|
run: npm ci
|
|
- name: Check formatting
|
|
run: npm run format:check
|
|
- name: Check lint
|
|
run: npm run lint
|