Skip to content

fix: search query regex (#142) #41

fix: search query regex (#142)

fix: search query regex (#142) #41

Workflow file for this run

name: ESLint
on:
push:
branches:
- "*"
- "!gh-pages"
paths:
- "src/**"
- ".eslintignore"
- ".eslintrc.*"
- ".prettierrc"
- ".github/workflows/lint.yml"
- "pnpm-lock.yaml"
workflow_dispatch:
jobs:
lint:
name: Lint source code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
- name: Install Node v18
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm run lint:fix
- name: Commit changes
uses: EndBug/add-and-commit@v4
with:
add: src
message: "chore(lint): auto-lint source code"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}