Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate from pre-commit.ci to GitHub Action #4194

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/format-files.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: 'Maintenance: Format w/ Prettier'

on:
pull_request:
branches: ['master']

jobs:
prettier:
runs-on: 'ubuntu-latest'

steps:
- uses: 'actions/checkout@v4'
with:
# Make sure the actual branch is checked out when running on pull requests
ref: '${{ github.head_ref }}'
# This is important to fetch the changes to the previous commit
fetch-depth: 0
- uses: 'actions/setup-node@v4'
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: './package-lock.json'
- run: 'npm clean-install'
- uses: 'creyD/[email protected]'
with:
# This part is also where you can pass other options, for example:
prettier_options: '--write'
only_changed: true
26 changes: 0 additions & 26 deletions .github/workflows/lint.yml

This file was deleted.

File renamed without changes.
4 changes: 4 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ export default [
node.configs['flat/recommended-script'],
prettier,
{




languageOptions: {
globals: {
...globals.es2021,
Expand Down
Loading