Skip to content

Commit

Permalink
refactor: merge actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyr33x committed Jan 29, 2025
1 parent 2477761 commit a877d4c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 32 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/check-lint.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,10 +1,35 @@
name: Quality / Format
name: Quality

on:
- push
- pull_request

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9.11.0
run_install: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

- name: Install dependencies
run: pnpm install

- name: Run ESLint
run: pnpm run lint

prettier:
runs-on: ubuntu-latest

Expand Down

0 comments on commit a877d4c

Please sign in to comment.