diff --git a/.github/workflows/Style.yml b/.github/workflows/Style.yml new file mode 100644 index 0000000..0228051 --- /dev/null +++ b/.github/workflows/Style.yml @@ -0,0 +1,21 @@ +name: Build + +on: + push: + branches: ['*'] + pull_request: + branches: ['*'] + workflow_dispatch: + +jobs: + Prettier: + runs-on: ubuntu-latest + name: Code Style Check + + steps: + - uses: actions/checkout@v4 + + - name: Prettier dry run + uses: creyD/prettier_action@v4.3 + with: + dry: True