update: adjustment to run health checks #1604
This file contains hidden or 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: Continuous Testing and Automated NPM Publication | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-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: Check if JL dev mode is enabled | |
id: check-jl-dev-mode | |
run: echo "dev_mode=$(grep -q 'VITE_USE_JUPYTERLITE_DEV_URL.*true' .env && echo 'true' || echo 'false')" >> $GITHUB_OUTPUT | |
- name: Docker build | |
uses: ./.github/workflows/docker-build-test | |
with: | |
skip_tests: 'true' | |
run-test-environment: ${{ steps.check-jl-dev-mode.outputs.dev_mode == 'true' && 'VITE_USE_JUPYTERLITE_DEV_URL=true' || '' }} | |
- name: Run healthcheck tests | |
uses: ./.github/workflows/docker-build-test | |
with: | |
skip_build: 'true' | |
run-test-environment: IMAGE_TAG=latest PORT=3001 VNC_PORT=5920 NPM_RUN_COMMAND=test:healthcheck TAGS='not @ignore and @notebook_healthcheck' | |
- name: Validate app dockerfile | |
uses: ./actions/docker/validate | |
with: | |
dockerfile: ./dockerfiles/app/Dockerfile | |
- name: Validate JS package | |
uses: ./actions/js/validate | |
with: | |
node-version: 20.x | |
use-legacy-peer-deps: true | |
- name: Validate test dockerfile | |
uses: ./actions/docker/validate | |
with: | |
dockerfile: ./dockerfiles/tests/Dockerfile | |
- name: Upload test artifacts on failure | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: healthcheck-results-${{ github.run_id }} | |
path: | | |
tests/cypress/screenshots/ | |
tests/cypress/videos/ | |
tests/cypress/results/ | |
retention-days: 30 | |
if-no-files-found: ignore | |
publish: | |
needs: run-tests | |
runs-on: ubuntu-latest | |
if: github.ref_name == 'dev' | |
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: Publish the application package and create release tag | |
uses: ./actions/js/publish | |
with: | |
node-version: 20.x | |
npm-token: ${{ secrets.NPM_TOKEN }} | |
github-token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
verify-tests: false | |
npm-options: '--legacy-peer-deps' | |
- name: Publish tests package | |
uses: ./actions/js/publish | |
with: | |
node-version: 20.x | |
npm-token: ${{ secrets.NPM_TOKEN }} | |
github-token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
package-directory: ./tests | |
verify-tests: false | |
publish-tag: false | |
npm-options: '--legacy-peer-deps' |