Skip to content

464 implement frontend javascript testing #1

464 implement frontend javascript testing

464 implement frontend javascript testing #1

Workflow file for this run

name: Node - CI - Lint and Test
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v6
with:
node-version: '18'
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test-ci