45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
name: Budibase Nightly Tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 5 * * *" # every day at 5AM
|
|
|
|
jobs:
|
|
nightly:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js 14.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14.x
|
|
- run: yarn
|
|
- run: yarn bootstrap
|
|
- run: yarn build
|
|
- name: Pull from budibase-infra
|
|
run: |
|
|
curl -H "Authorization: token ${{ secrets.GH_PERSONAL_TOKEN }}" \
|
|
-H 'Accept: application/vnd.github.v3.raw' \
|
|
-o
|
|
-L
|
|
wc -l
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: Test Reports
|
|
path:
|
|
|
|
# TODO: enable once running in QA test env
|
|
# - name: Configure AWS Credentials
|
|
# uses: aws-actions/configure-aws-credentials@v1
|
|
# with:
|
|
# aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
# aws-region: eu-west-1
|
|
|
|
# - name: Upload test results HTML
|
|
# uses: aws-actions/configure-aws-credentials@v1
|
|
# run: aws s3 cp packages/builder/cypress/reports/testReport.html s3://{{ secrets.BUDI_QA_REPORTS_BUCKET_NAME }}/$GITHUB_RUN_ID/index.html
|