Skip to content

Commit 14fa40b

Browse files
authored
Merge pull request #4 from bids-standard/ci/nowd
Remove working directory directives
2 parents 7d88eea + d703c26 commit 14fa40b

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

.codespellrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[codespell]
2+
skip = deno.lock,data
3+
ignore-words-list = particpants

.github/workflows/codespell.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,3 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
- uses: codespell-project/actions-codespell@master
22-
with:
23-
ignore_words_list: ro,anser,te,tage,afterall,nwe,nin,nd,falsy
24-
skip: deno.lock

.github/workflows/deno_tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ jobs:
2626
with:
2727
deno-version: v2.x
2828
- run: deno --node-modules-dir=auto -A ./build.ts
29-
working-directory: ./bids-validator
30-
- run: deno run -A ./bids-validator/dist/validator/bids-validator.js --version
29+
- run: deno run -A ./dist/validator/bids-validator.js --version
3130
- uses: actions/upload-artifact@v4
3231
with:
3332
name: main
34-
path: bids-validator/dist/validator
33+
path: dist/validator
3534

3635
test:
3736
runs-on: ${{ matrix.os }}
@@ -43,7 +42,6 @@ jobs:
4342
fail-fast: false
4443
defaults:
4544
run:
46-
working-directory: ./bids-validator
4745
shell: bash
4846

4947
steps:

web/deno.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"tasks": {
3-
"dev": "../bids-validator/build.ts && deno run -A --node-modules-dir npm:vite",
4-
"build": "../bids-validator/build.ts && deno run -A --node-modules-dir npm:vite build",
3+
"dev": "../build.ts && deno run -A --node-modules-dir npm:vite",
4+
"build": "../build.ts && deno run -A --node-modules-dir npm:vite build",
55
"preview": "deno run -A --node-modules-dir npm:vite preview",
66
"serve": "deno run --allow-net --allow-read https://deno.land/[email protected]/http/file_server.ts dist/"
77
}
8-
}
8+
}

web/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useState } from "react"
22
import "./App.css"
33
import { directoryOpen } from "https://esm.sh/[email protected]"
44
import { fileListToTree, validate } from "../dist/validator/main.js"
5-
import type { ValidationResult } from "../../bids-validator/src/types/validation-result.ts"
5+
import type { ValidationResult } from "../../src/types/validation-result.ts"
66
import { Collapse } from "./Collapse.tsx"
77
import { Summary } from "./Summary.tsx"
88

0 commit comments

Comments
 (0)