Skip to content

feat(infra): added authentication with jwt and changes to tests #13

feat(infra): added authentication with jwt and changes to tests

feat(infra): added authentication with jwt and changes to tests #13

name: Run unit tests
on:
push:
branches:
- alpha
jobs:
unit-tests:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use node.js
uses: actions/setup-node@v3
with:
node-version: 'latest'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm run test