Skip to content

Commit

Permalink
Merge pull request #13 from liviomendonca/actions
Browse files Browse the repository at this point in the history
adds `Automated Tests` Github Action
  • Loading branch information
liviomendonca authored Sep 23, 2024
2 parents ddb4b20 + 5701f65 commit c3b7d23
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Automated Tests

on: pull_request

jobs:
jest:
name: Jest Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/hydrogen"

- run: npm ci
- run: npm test

0 comments on commit c3b7d23

Please sign in to comment.