From 7371cb691d4fb9d51f72e6237555e025a6a1ca31 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Thu, 28 Dec 2023 17:38:36 +0000 Subject: pull_requests.yml: Add formatting check --- .github/workflows/pull_requests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_requests.yml index 751a051..8823249 100644 --- a/.github/workflows/pull_requests.yml +++ b/.github/workflows/pull_requests.yml @@ -27,5 +27,7 @@ jobs: cache: 'yarn' - name: Install Node.js packages run: yarn install --immutable --immutable-cache --check-cache - - name: Run test build + - name: Test formatting + run: yarn prettier -c src + - name: Test build run: yarn build \ No newline at end of file -- cgit