From 500434a371ba64b667298edd634b9aef1eda4acf Mon Sep 17 00:00:00 2001 From: James Hobbs Date: Thu, 23 Oct 2025 17:34:25 +0100 Subject: [PATCH] ci: fix ci dupe --- .github/workflows/ci.yaml | 31 ------------------------------- .github/workflows/ci.yml | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 31 deletions(-) delete mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 6c57b67..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: CI - -on: - push: - branches: main - pull_request: - branches: '*' - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -jobs: - spell-check: - name: Spell Check - permissions: - contents: read - timeout-minutes: 10 - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 - - - name: Base Setup - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@d72f5cb72b472c1e59036840891e918c9bda4dae # v1 - - - name: Install JupyterLab - run: python -m pip install -U "jupyterlab>=4.0.0,<5" - - - name: Run spell check - run: npx cspell@9.2.1 "**/*.{md,txt,json,js,ts,tsx,jsx,yml,yaml}" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f1536c..a2d5829 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,3 +119,22 @@ jobs: - name: Check licenses run: yarn check-licenses + + spell-check: + name: Spell Check + permissions: + contents: read + timeout-minutes: 10 + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 + + - name: Base Setup + uses: jupyterlab/maintainer-tools/.github/actions/base-setup@d72f5cb72b472c1e59036840891e918c9bda4dae # v1 + + - name: Install JupyterLab + run: python -m pip install -U "jupyterlab>=4.0.0,<5" + + - name: Run spell check + run: npx cspell@9.2.1 "**/*.{md,txt,json,js,ts,tsx,jsx,yml,yaml}"