From 06c52cb09a9c9d79624036fbc65a3926547a4dfb Mon Sep 17 00:00:00 2001 From: CTome <64846840+CrimsonTome@users.noreply.github.com> Date: Sat, 17 Sep 2022 03:06:12 +0100 Subject: [PATCH] add prettier to CI --- .github/workflows/node CI.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/node CI.yml b/.github/workflows/node CI.yml index 29e9fcb..dea343d 100644 --- a/.github/workflows/node CI.yml +++ b/.github/workflows/node CI.yml @@ -29,5 +29,7 @@ jobs: uses: actions/setup-node@v1 with: node-version: '18.x' + - name: run Prettier + run: npx prettier --check . - name: Run npm run: npm install && npm run build