From 8fdacba40c513c03bca51c02cc8675e707c1c132 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sat, 14 Dec 2024 13:45:45 +0100 Subject: [PATCH] Actions: simplify runner --- .forgejo/workflows/deploy_hosted.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.forgejo/workflows/deploy_hosted.yml b/.forgejo/workflows/deploy_hosted.yml index f07108415..c19a11f90 100644 --- a/.forgejo/workflows/deploy_hosted.yml +++ b/.forgejo/workflows/deploy_hosted.yml @@ -42,13 +42,7 @@ jobs: export NODE_OPTIONS="--max-old-space-size=8192" npm run clean:tests npm run generate:doctests 2>&1 | grep -v "No doctests found in" - if which vitest - then - vitest --run test - else - npm run test - fi - + vitest --run test npm run clean:tests shell: bash