Skip to content

Commit

Permalink
Run tests via GitHub actions (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennsippell authored Jan 23, 2024
1 parent 960bf86 commit 926b3bc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
name: Tests in CI
name: Run Build and Tests

on: [push]
on: push

jobs:
test:
name: Run Build and Tests
runs-on: ubuntu-latest
timeout-minutes: 15

steps:
- uses: actions/checkout@v2
- name: actions/setup-node@v1
- uses: actions/setup-node@v1
with:
node-version: 20.x
- run: npm ci
- run: npm run build
- run: npm test

0 comments on commit 926b3bc

Please sign in to comment.