From: Emin Kocan Date: Sat, 14 Sep 2024 13:36:34 +0000 (+0200) Subject: Add step for creation tmp/pids in test workflow X-Git-Tag: live~154^2~1 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/e5c5776e65f1a461d7d1aa678e843c9cf83316c2 Add step for creation tmp/pids in test workflow --- 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