Skip to content

🚀 Release 1.56.0 #4

🚀 Release 1.56.0

🚀 Release 1.56.0 #4

name: 'Release: PR Checks'
on:
pull_request:
types:
- opened
branches:
- 'release/v**'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- run: corepack enable
- uses: actions/setup-node@v4.0.2
with:
node-version: 20.x
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Run typecheck
run: pnpm typecheck
- name: Cache build artifacts
uses: actions/cache/save@v4.0.0
with:
path: ./packages/**/dist
key: ${{ github.sha }}-base:build
db-tests:
name: DB tests
uses: ./.github/workflows/db-tests-reusable.yml

Check failure on line 37 in .github/workflows/release-pr-checks.yml

View workflow run for this annotation

GitHub Actions / Release: PR Checks

Invalid workflow file

The workflow is not valid. In .github/workflows/release-pr-checks.yml (Line: 37, Col: 11): Error from called workflow netroy/n8n/.github/workflows/db-tests-reusable.yml@7583aedf87d86a3418d9e7449221c8c154cb52de (Line: 12, Col: 3): The workflow must contain at least one job with no dependencies.
needs: build
with:
cache-key: ${{ github.sha }}-base:build
e2e-tests:
name: E2E Tests
uses: ./.github/workflows/e2e-reusable.yml
needs: build
with:
cache-key: ${{ github.sha }}-base:build
secrets:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}