Skip to content

feat(deployment): add deploy bash script #26

feat(deployment): add deploy bash script

feat(deployment): add deploy bash script #26

Workflow file for this run

name: Unit tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
jest-tests:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Run jest test
run: npm run test:jest:coverage