Skip to content

Commit

Permalink
chore(workflows): Update linting workflow for Biome
Browse files Browse the repository at this point in the history
  • Loading branch information
octet-stream committed Jul 3, 2024
1 parent 79c0111 commit 36884a9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/eslint.yml → .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: ESLint
name: Lint

on:
push:
branches: [main]
paths:
- "**.ts"
- "**.js"
- "package.json"
- "pnpm-lock.yaml"
- ".eslintrc.json"
- ".eslintignore"
- ".github/workflows/eslint.yml"
- "biome.json"
- ".github/workflows/lint.yml"
pull_request:
branches: [main]
paths:
- "**.ts"
- "**.js"
- "package.json"
- "pnpm-lock.yaml"
- ".eslintrc.json"
- ".eslintignore"
- ".github/workflows/eslint.yml"
- "biome.json"
- ".github/workflows/lint.yml"

jobs:
eslint:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -54,4 +54,4 @@ jobs:
- name: Install dependencies
run: pnpm i --frozen-lockfile

- run: pnpm run eslint
- run: pnpm run lint

0 comments on commit 36884a9

Please sign in to comment.