Skip to content

test(test,infra): changed e2e testing configuration implementation #14

test(test,infra): changed e2e testing configuration implementation

test(test,infra): changed e2e testing configuration implementation #14

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