Skip to content

GSLUX-649: Time slide mode range (UI) #415

GSLUX-649: Time slide mode range (UI)

GSLUX-649: Time slide mode range (UI) #415

Workflow file for this run

name: Lint, Build & Test
on:
push:
tags:
- '*'
branches:
- main
pull_request:
branches:
- main
jobs:
build-lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run type-check
- run: npm run build-only -- --mode=e2e
- run: npm run test:unit:ci
- run: npm run test:e2e:ci
- run: npm run coverage-report