Notebooks Healthcheck #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |