Skip to content

Make releasePage.vue to scroll to top when mounted #18

Make releasePage.vue to scroll to top when mounted

Make releasePage.vue to scroll to top when mounted #18

Workflow file for this run

# This workflow is the entry point for all CI processes.
# It is from here that all other workflows are launched.
name: Orbiter tests
on:
workflow_dispatch:
push:
branches:
- main
- 'renovate/**'
tags:
- v*
paths-ignore:
- '.github/**'
- '!.github/workflows/*.yml'
- '**.md'
- .editorconfig
- .gitignore
- '.idea/**'
- '.vscode/**'
pull_request:
paths-ignore:
- '.github/**'
- '!.github/workflows/*.yml'
- '**.md'
- .editorconfig
- .gitignore
- '.idea/**'
- '.vscode/**'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
typechecking:
uses: ./.github/workflows/typechecking.yml
tests:
uses: ./.github/workflows/tests.yml
web_tests:
uses: ./.github/workflows/webTests.yml
publish_web_app:
needs: [ typechecking, web_tests ]
uses: ./.github/workflows/publishPage.yml

Check failure on line 44 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "./.github/workflows/publishPage.yml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
draft_release:
if: ${{ github.ref_name == 'main' }}
permissions:
contents: write # Allows this job to create releases
with:
dry-run: ${{ github.event_name != 'push' || github.ref_name != 'main' }}
needs: [ typechecking, tests ]
uses: ./.github/workflows/release.yml