From e5c5776e65f1a461d7d1aa678e843c9cf83316c2 Mon Sep 17 00:00:00 2001 From: Emin Kocan Date: Sat, 14 Sep 2024 15:36:34 +0200 Subject: [PATCH] Add step for creation tmp/pids in test workflow --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9e794d257..f8561b7b2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,6 +58,8 @@ jobs: run: bundle exec bin/yarn install - name: Compile assets run: bundle exec rails assets:precompile + - name: Create tmp/pids directory + run: mkdir -p tmp/pids - name: Run tests run: bundle exec rails test:all - name: Run javascript tests -- 2.39.5