Skip to content

Commit

Permalink
create continuous integration (#40)
Browse files Browse the repository at this point in the history
automatically run npm test for each pull request and commit
  • Loading branch information
NovemLinguae authored Jun 2, 2024
1 parent ef5bbe7 commit a91d0db
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Unit Tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: npm test

0 comments on commit a91d0db

Please sign in to comment.