Skip to content

Properly notify and handle duplication/deletion for fragments (#88) #415

Properly notify and handle duplication/deletion for fragments (#88)

Properly notify and handle duplication/deletion for fragments (#88) #415

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: run npm clean install
run: npm ci
- name: Force update @adobecom/milo dependency
run: npm add github:adobecom/milo#stage
- name: Install XVFB
run: sudo apt-get install xvfb
- name: Run the tests
run: xvfb-run -a npm test