Skip to content

Commit

Permalink
remove 'prettier' check
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel.eades committed Jan 31, 2025
1 parent 5b2be2d commit f2e4df6
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,6 @@ jobs:
run: cargo fmt --all -- --check
- name: Execute cargo clippy
run: cargo clippy --all --all-targets --all-features -- -D warnings
prettier:
name: Check prettier
runs-on: ubuntu-latest
if: github.repository == 'graphql-rust/graphql-client'
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install node.js
run: sudo apt update && sudo apt-get install -y nodejs
- name: Execute prettier
run: npx prettier --debug-check -l './**/*.json' './**/*.graphql'

msrv:
runs-on: ubuntu-latest
Expand All @@ -89,7 +78,7 @@ jobs:

# Automatically merge if it's a Dependabot PR that passes the build
dependabot:
needs: [test, wasm_build, lint, prettier, msrv]
needs: [test, wasm_build, lint, msrv]
permissions:
contents: write
pull-requests: write
Expand Down

0 comments on commit f2e4df6

Please sign in to comment.