From 9d07a3f8572e0caac4777642ea69b824fba60de1 Mon Sep 17 00:00:00 2001 From: "kennsippell@gmail.com" Date: Sun, 21 Jan 2024 15:29:00 -0600 Subject: [PATCH] Why does this fail without any error? --- .github/workflows/run-tests.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 7c1dba51..9bc03238 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,16 +1,17 @@ name: Tests in CI -on: [push] +on: push jobs: test: + name: Run tests runs-on: ubuntu-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v2 - - name: actions/setup-node@v1 - with: - node-version: 20.x - - run: npm ci - - run: npm test + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 20.x + - run: npm ci + - run: npm test