Skip to content

Commit

Permalink
Merge pull request #83 from bitovi/TR-4
Browse files Browse the repository at this point in the history
TR-4 - add github action to run test on push & PR request
  • Loading branch information
nicoledgreene authored Jul 15, 2024
2 parents 3e192d3 + ac9dc24 commit 17eaba7
Show file tree
Hide file tree
Showing 12 changed files with 965 additions and 595 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test

on:
pull_request:
branches: [main]
workflow_dispatch:
push:
branches: ['*']

jobs:
unit-test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "18"
- run: npm install
- run: npm run test
Loading

0 comments on commit 17eaba7

Please sign in to comment.