Skip to content

Commit 39a8734

Browse files
committed
Remove website npm plugin stuff
1 parent 299a7f3 commit 39a8734

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

.github/workflows/fix-linting.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,10 @@ jobs:
3232
GITHUB_TOKEN: ${{ secrets.nf_core_bot_auth_token }}
3333

3434
# Install and run pre-commit
35-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
35+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6
3636
with:
3737
python-version: 3.11
3838

39-
# install prettier plugins
40-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
41-
with:
42-
node-version: 20
43-
- run: npm install --only=dev
44-
4539
- name: Install pre-commit
4640
run: pip install pre-commit
4741

.github/workflows/pre-commit.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
13-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
13+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6
1414
with:
15-
node-version: 20
16-
- run: npm install --only=dev
17-
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
15+
python-version: 3.11
16+
- name: Install pre-commit
17+
run: pip install pre-commit
18+
19+
- name: Run pre-commit
20+
run: pre-commit run --all-files

0 commit comments

Comments
 (0)