Skip to content

Commit

Permalink
Merge pull request #1 from Whisker17/feat/add-prettier-check-actions
Browse files Browse the repository at this point in the history
feat: add prettier action
  • Loading branch information
Whisker17 authored Jul 26, 2023
2 parents 66b71e0 + 7ecb44a commit 80653dd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/prettier_write.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Prettier Write

on:
push:
branches:
- master

jobs:
prettier:
runs-on: ubuntu-latest

steps:
- name: Check Out Repository
uses: actions/checkout@v2

- name: Run Prettier Check
run: docker run --rm -v $PWD:/app -w /app prettier/prettier:latest --write .

0 comments on commit 80653dd

Please sign in to comment.