Skip to content

fix: update ME.md for clarity contributor guidance #2923

fix: update ME.md for clarity contributor guidance

fix: update ME.md for clarity contributor guidance #2923

Workflow file for this run

name: Build Check
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
lint:
name: Lint
if: github.event_name == 'pull_request' || github.event_name == 'push'
uses: ./.github/workflows/re-lint.yml
secrets: inherit
test:
name: Test
if: github.event_name == 'pull_request' || github.event_name == 'push'
uses: ./.github/workflows/re-test.yml
secrets: inherit
build:
name: Build
if: github.event_name == 'pull_request' || github.event_name == 'push'
needs: [lint, test]
uses: ./.github/workflows/re-build.yml
with:
upload-artifacts: true
secrets: inherit