Skip to content

EVA-3625 Visual Framework Integration Example and Tests #7

EVA-3625 Visual Framework Integration Example and Tests

EVA-3625 Visual Framework Integration Example and Tests #7

Workflow file for this run

name: Run tests
on:
push:
branches: [ main ]
pull_request:
branches:
- main
- feature/react_poc
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.14.0 ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install
- name: Run tests
run: |
npm test