Skip to content

Bump vite from 5.4.11 to 6.0.6 in the npm_and_yarn group across 1 directory #9

Bump vite from 5.4.11 to 6.0.6 in the npm_and_yarn group across 1 directory

Bump vite from 5.4.11 to 6.0.6 in the npm_and_yarn group across 1 directory #9

Workflow file for this run

name: Main Pipeline
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
format:
uses: ./.github/workflows/format.yml
test:
needs: format
uses: ./.github/workflows/test.yml
deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs: test
uses: ./.github/workflows/deploy.yml

Check failure on line 21 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

error parsing called workflow ".github/workflows/main.yml" -> "./.github/workflows/deploy.yml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
notify:
needs: [format, test, deploy]
runs-on: ubuntu-latest
if: always()
steps:
- name: Notify success
if: ${{ success() }}
run: echo "Pipeline completed successfully!"
- name: Notify failure
if: ${{ failure() }}
run: echo "Pipeline failed. Please check the logs for details."