Skip to content

Commit

Permalink
chore: create workflow for test
Browse files Browse the repository at this point in the history
  • Loading branch information
fcbento committed Dec 14, 2024
1 parent 58d16ae commit 48e139a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Unit Tests

on: [push]

env:
NODE_ENV: dev

jobs:
run-unit-tests:
name: Run Unit Tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'

- run: npm ci

- run: npm run test

- run: npm run test:e2e:watch

0 comments on commit 48e139a

Please sign in to comment.