Skip to content

build(gha): run build step before test to avoid nx cache issues #223

build(gha): run build step before test to avoid nx cache issues

build(gha): run build step before test to avoid nx cache issues #223

Workflow file for this run

name: 'On push ⚙️'
on:
push:
branches:
- main
- beta
- alpha
paths-ignore:
- ./**/*.md
- ./.idea/**
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
# Run setup initially to save cache and time on subsequent jobs
setup:
uses: ./.github/workflows/setup.yml

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

View workflow run for this annotation

GitHub Actions / .github/workflows/push.yml

Invalid workflow file

error parsing called workflow ".github/workflows/push.yml" -> "./.github/workflows/setup.yml" : failed to fetch workflow: workflow was not found.
secrets: inherit
build:
needs: setup
uses: ./.github/workflows/build.yml
secrets: inherit
test:
needs: build
uses: ./.github/workflows/test.yml
secrets: inherit
rebase-prs:
needs:
- test
- build
uses: ./.github/workflows/rebase-prs.yml
secrets: inherit