Skip to content

Issue 739 tooltip align fix #2375

Issue 739 tooltip align fix

Issue 739 tooltip align fix #2375

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- master
- "release_**"
pull_request:
branches:
- master
- "release_**"
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: npm install, build
run: |
npm ci
npm run build
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: dist