isaacscript 4.7.4 → 4.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,11 +2,6 @@ runs:
|
|
|
2
2
|
using: composite
|
|
3
3
|
|
|
4
4
|
steps:
|
|
5
|
-
# https://github.com/actions/setup-node/issues/899
|
|
6
|
-
- name: Enable corepack to work around a setup-node bug
|
|
7
|
-
run: corepack enable
|
|
8
|
-
shell: bash # Composite jobs must specify the shell.
|
|
9
|
-
|
|
10
5
|
- name: Setup Node.js
|
|
11
6
|
uses: actions/setup-node@v4
|
|
12
7
|
with:
|
|
@@ -4,6 +4,7 @@ await lintScript(async () => {
|
|
|
4
4
|
const promises = [
|
|
5
5
|
// Use TypeScript to type-check the code.
|
|
6
6
|
$`tsc --noEmit`,
|
|
7
|
+
$`tsc --noEmit --project ./scripts/tsconfig.json`,
|
|
7
8
|
|
|
8
9
|
// Use ESLint to lint the TypeScript code.
|
|
9
10
|
// - "--max-warnings 0" makes warnings fail, since we set all ESLint errors to warnings.
|