Skip to content

Merge pull request #106 from Settis/outlineSupport #48

Merge pull request #106 from Settis/outlineSupport

Merge pull request #106 from Settis/outlineSupport #48

Workflow file for this run

name: End to end testing on Mac OS
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup node
uses: actions/setup-node@v3
with:
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Compile
run: npm run compile
- name: Test compile
run: npm run test-compile
- name: Run e2e tests
uses: coactions/setup-xvfb@v1
with:
run: npm test