Skip to content

Commit

Permalink
Why does this fail without any error?
Browse files Browse the repository at this point in the history
  • Loading branch information
kennsippell committed Jan 21, 2024
1 parent e4975ad commit 9d07a3f
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9d07a3f

Please sign in to comment.