mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-18 13:14:15 +02:00
ci(build): add prettier github action
This commit is contained in:
parent
c2b0753232
commit
1a8b6eb0c1
28
.github/workflows/prettier.yml
vendored
Normal file
28
.github/workflows/prettier.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
name: Prettier
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ "main" ]
|
||||
schedule:
|
||||
- cron: '27 13 * * 1'
|
||||
|
||||
jobs:
|
||||
eslint:
|
||||
name: Run prettier scanning
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
security-events: write
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install Prettier
|
||||
run: |
|
||||
npm install prettier@3.1.0
|
||||
|
||||
- name: Run Prettier
|
||||
run: npx prettier . --check
|
Loading…
x
Reference in New Issue
Block a user