Skip to content

Commit

Permalink
Testing Github workflows for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matiduda committed Nov 5, 2023
1 parent e25ecf5 commit 3cd8efc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Run Jest tests
run-name: ${{ github.actor }} requested unit tests
on: [push]
jobs:
run-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '12.16.1'
- run: npm ci
- run: npm run test

0 comments on commit 3cd8efc

Please sign in to comment.