Skip to content

EPMRPP-91757 || modal and toggle fix #98

EPMRPP-91757 || modal and toggle fix

EPMRPP-91757 || modal and toggle fix #98

Workflow file for this run

name: CI-pipeline
on:
push:
branches:
- develop
- '!main'
paths-ignore:
- README.md
- CHANGELOG.md
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run lint
run: npm run lint
- name: Run tests and check coverage
run: npm run test:coverage