Remove prettier github action

This commit is contained in:
cmdr2
2023-04-29 08:18:36 +05:30
parent 51e067b050
commit 729f7eb24a
4 changed files with 1 additions and 66 deletions

View File

@@ -1,25 +0,0 @@
name: Check JavaScript for conformance with Prettier
on:
push:
pull_request:
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: npm ci
- name: Run prettier
run: |-
npm run prettier-fix
- name: Print the required changes
run: git diff; git reset --hard
- name: Check prettier
run: |-
npm run prettier-check