Skip to content

ME-16623 - creating first VP automation test #374

ME-16623 - creating first VP automation test

ME-16623 - creating first VP automation test #374

Workflow file for this run

name: 🚧 Validate
on:
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build-all
- name: Unit tests
run: npm run test:unit
- name: E2E tests
run: npm run test:e2e