Skip to content

Jetbrains IDE settings : add run and tests configuration : docker, karma, scala… #237

Jetbrains IDE settings : add run and tests configuration : docker, karma, scala…

Jetbrains IDE settings : add run and tests configuration : docker, karma, scala… #237

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
defaults:
run:
working-directory: ./frontend
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.19'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test