From f5eff5df7b9602c3de5ee35cf3219b5e63875f33 Mon Sep 17 00:00:00 2001 From: Oscar Thomson Date: Wed, 8 Jul 2026 13:18:06 +0000 Subject: [PATCH] Sped up the github actions --- .github/workflows/main.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c94bf09..1727800 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,19 +21,17 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 - name: Format frontend working-directory: frontend run: | - npm i - npm run format + npx prettier --write . - name: Format backend working-directory: backend run: | - npm i - npm run format + npx prettier --write . - name: Commit formatting changes run: |