Skip to content

Commit be0c4f6

Browse files
authored
Fix Various CI Problems (#4151)
* Rebuild package-lock.json * Kill off double eslint forwarding to config * Some biome fixes * Turn nullish coalescing eslint rule off since with this new ??= operator integration for now it gets too noisy, TBD separately * Fixes and left-over removals * Add some global tsc command (reveals a lot of errors) * Typescript fixes * Temporarily (or permanently) disable docker CI build
1 parent 428ffe2 commit be0c4f6

34 files changed

+1943
-3788
lines changed

.github/workflows/docker-image.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010

1111
jobs:
1212
docker:
13+
if: false # Temporarily disabled, not sure if kept alive
1314
runs-on: ubuntu-latest
1415
strategy:
1516
matrix:

config/cli/lint-diff.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dim() {
2525
echo "${DIM}$1${NOCOLOR}"
2626
}
2727

28-
dim "> eslint --config ./config/eslint.config.mjs ."
28+
dim "> eslint --config ./eslint.config.mjs ."
2929

3030
blue "[Lint]${NOCOLOR} checking..."
3131

@@ -34,7 +34,7 @@ if [ -z "$FILESCHANGED" ]; then
3434
exit
3535
fi
3636

37-
eslint --config ./config/eslint.config.mjs $FILESCHANGED
37+
eslint --config ./eslint.config.mjs $FILESCHANGED
3838

3939
RETURN_CODE=$?
4040

config/eslint.config.mjs

Lines changed: 0 additions & 200 deletions
This file was deleted.

0 commit comments

Comments
 (0)