Skip to content

chore: add astro types #554

chore: add astro types

chore: add astro types #554

Workflow file for this run

#
# Run all checks on PRs and pushes
#
name: Checks
# Controls when the action will run.
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main, next, beta, alpha]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}_${{ github.head_ref || github.ref || github.run_id }}
cancel-in-progress: true
jobs:
pr-lint:
name: '▶️ actions'
uses: ./.github/workflows/pr-lint.yml
codeql:
name: '▶️ actions'
needs: [pr-lint]
uses: ./.github/workflows/codeql.yml
dependencies:
name: '▶️ actions'
needs: [pr-lint]
uses: ./.github/workflows/dependencies.yml
npm-lint:
name: '▶️ actions'
needs: [pr-lint]
uses: ./.github/workflows/npm-lint.yml
npm-build:
name: '▶️ actions'
needs: [pr-lint]
uses: ./.github/workflows/npm-build.yml
npm-test:
name: '▶️ actions'
needs: [pr-lint]
uses: ./.github/workflows/npm-test.yml