Skip to content

Commit 56e855d

Browse files
fix: move spell check from build.yml to ci.yaml as separate CI workflow
1 parent 9ac36f7 commit 56e855d

File tree

2 files changed

+27
-13
lines changed

2 files changed

+27
-13
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -169,16 +169,3 @@ jobs:
169169
- uses: actions/checkout@v4
170170
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
171171
- uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1
172-
173-
spell-check:
174-
name: Spell Check
175-
runs-on: ubuntu-latest
176-
steps:
177-
- name: Checkout
178-
uses: actions/checkout@v4
179-
180-
- name: Base Setup
181-
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
182-
183-
- name: Run spell check
184-
run: jlpm run spell-check

.github/workflows/ci.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: main
6+
pull_request:
7+
branches: '*'
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
spell-check:
15+
name: Spell Check
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
21+
- name: Base Setup
22+
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
23+
24+
- name: Run spell check
25+
run: jlpm run spell-check
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)