Skip to content

Commit

Permalink
Merge pull request #37 from AntonKhorev/test-workflow
Browse files Browse the repository at this point in the history
Add github workflow for tests
  • Loading branch information
tomhughes authored Sep 3, 2024
2 parents 923076f + fe627fc commit 8e32a5f
Show file tree
Hide file tree
Showing 2 changed files with 2,765 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Tests

on:
- push
- pull_request

jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'npm'
- run: npm ci
- run: npm test
Loading

0 comments on commit 8e32a5f

Please sign in to comment.