Skip to content

Commit

Permalink
workflow: test step added
Browse files Browse the repository at this point in the history
  • Loading branch information
ralcorta committed Oct 2, 2023
1 parent 8c6745a commit 6f5fb64
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Tests

on: [pull_request]
jobs:
test:
name: Run Jest Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Dependencies
run: npm install
- name: Run Jest Tests
run: npm test

0 comments on commit 6f5fb64

Please sign in to comment.