1
0
Fork 0
mirror of synced 2024-09-18 02:08:34 +12:00
budibase/.github/workflows/smoke_test.yaml

31 lines
802 B
YAML
Raw Normal View History

2022-08-22 23:01:50 +12:00
name: Budibase Nightly Tests
2022-01-15 03:18:39 +13:00
on:
workflow_dispatch:
schedule:
- cron: "0 5 * * *" # every day at 5AM
2022-01-15 03:18:39 +13:00
jobs:
2022-08-22 23:01:50 +12:00
nightly:
runs-on: [self-hosted, qa]
2022-01-15 03:18:39 +13:00
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: QA Core Integration Tests
2022-01-15 03:18:39 +13:00
run: |
cd qa-core
yarn
yarn api:test:ci
env:
BUDIBASE_HOST: budicloud.qa.budibase.net
2023-02-16 12:43:53 +13:00
BUDIBASE_ACCOUNTS_URL: https://account-portal.budicloud.qa.budibase.net
- name: Cypress Discord Notify
run: yarn test:notify
env:
WEBHOOK_URL: ${{ secrets.BUDI_QA_WEBHOOK }}
GITHUB_RUN_URL: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID