Skip to content

refactor: action trigger logic #14

refactor: action trigger logic

refactor: action trigger logic #14

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: 🔍 Lint App
uses: ./.github/workflows/lint.yml
tests:
name: 🧪 Tests
uses: ./.github/workflows/test.yml
needs: lint
build:
name: 🏗️ Build
uses: ./.github/workflows/build.yml
needs: tests
release:
name: 🚀 Release
uses: ./.github/workflows/release.yml
needs: tests
permissions:
contents: write