Github CI workflow fix (#9137)
This commit is contained in:
8
.github/workflows/ci-demo-check.yml
vendored
8
.github/workflows/ci-demo-check.yml
vendored
@ -1,7 +1,8 @@
|
|||||||
name: CI demo check
|
name: CI Demo check
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '30 7,19 * * *'
|
- cron: '30 7,19 * * *'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
@ -11,6 +12,9 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: ./packages/twenty-e2e-testing
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
@ -27,7 +31,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Run Playwright tests
|
- name: Run Playwright tests
|
||||||
id: test
|
id: test
|
||||||
run: yarn playwright test --grep @demo-only
|
run: yarn playwright test --grep "@demo-only"
|
||||||
|
|
||||||
- name: Upload report after tests
|
- name: Upload report after tests
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|||||||
Reference in New Issue
Block a user