-
Notifications
You must be signed in to change notification settings - Fork 10
56 lines (49 loc) · 1.54 KB
/
notebooks-healthcheck.yml
File metadata and controls
56 lines (49 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Notebooks Healthcheck
on:
schedule:
- cron: '0 0 * * 5' # Run every Friday at midnight
workflow_dispatch:
jobs:
run-notebook-tests:
runs-on: ubuntu-22.04
continue-on-error: true
steps:
- name: Checkout this repository
uses: actions/checkout@v4
with:
lfs: true
- name: Checkout actions repository
uses: actions/checkout@v4
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
path: actions
- name: Login to GitHub Container registry
uses: docker/login-action@v3
env:
GITHUB_USER: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
registry: ghcr.io
username: $GITHUB_USER
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker build
uses: ./.github/workflows/docker-build-test
with:
skip_tests: 'true'
- name: Docker test, healthchecks only
uses: ./.github/workflows/docker-build-test
with:
skip_build: 'true'
run-test-environment: NPM_RUN_COMMAND='test:healthcheck'
- name: Upload test artifacts
if: failure() # Only upload when tests fail
uses: actions/upload-artifact@v4
with:
name: notebook-healthcheck-results-${{ github.run_id }}
path: |
tests/cypress/screenshots/
tests/cypress/videos/
tests/cypress/results/
retention-days: 30
if-no-files-found: ignore