Skip to content

Commit

Permalink
Merge pull request #11 from UniMagic-VRC/feat/format-test
Browse files Browse the repository at this point in the history
PR時にフォーマットが行われているかのテストを追加
  • Loading branch information
o-tr authored Oct 20, 2024
2 parents 5f67a27 + 5220bca commit 053ddf8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pr_test_format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: PR Format Check

on:
pull_request:
branches:
- master

jobs:
format-check:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"

- name: Install dependencies
run: npm install

- name: Run Prettier check
run: npx prettier --check ./**/md

0 comments on commit 053ddf8

Please sign in to comment.