Skip to content

refactor: tooltip helper #109

refactor: tooltip helper

refactor: tooltip helper #109

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
jobs:
prepare: # macOS code-signing only works on `push` events and not `pull_request` events
if: ${{ !startsWith(github.head_ref, 'release/v') }}
name: Prepare CI
runs-on: ubuntu-latest
steps:
- run: echo Running CI for branch ${{ github.head_ref }}
lint:
name: Lint App
uses: ./.github/workflows/lint.yml
needs: prepare
with:
directory: '.'
tests:
name: Tests
uses: ./.github/workflows/test.yml
needs: lint
secrets: inherit
build:
name: Build
uses: ./.github/workflows/build.yml
needs: tests
secrets: inherit