Skip to content

Notebooks Healthcheck #12

Notebooks Healthcheck

Notebooks Healthcheck #12

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
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: -e NPM_RUN_COMMAND='test:healthcheck'