Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 66aab9d

Browse files
author
Jacob
committed
PR review fixups
1 parent 5fcb068 commit 66aab9d

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.changeset/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"baseBranch": "master",
88
"updateInternalDependencies": "patch",
99
"ignore": []
10-
}
10+
}

.github/workflows/typechecks.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ jobs:
1515
with:
1616
node-version: 16.7
1717

18-
- run: npm install -g [email protected]
19-
- run: markdownlint '**/*.md' --ignore node_modules
18+
- run: npm run markdownlint
2019
test:
2120
name: 'Typechecking'
2221
runs-on: ubuntu-latest
@@ -33,11 +32,12 @@ jobs:
3332
run: npm install
3433

3534
- uses: actions/cache@v2
35+
id: node-modules-cache
3636
with:
37-
path: ~/.npm
37+
path: |
38+
node_modules
39+
*/*/node_modules
3840
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
39-
restore-keys: |
40-
${{ runner.os }}-node-
4141

4242
- name: Run Type Checking
4343
run: tsc

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"scripts": {
1414
"export:docs": "node -r esbuild-register export/docs.ts",
1515
"export:overrides": "node -r esbuild-register export/overrides.ts",
16+
"markdownlint": "npx markdownlint-cli '**/*.md' -i node_modules -i LICENSE.md",
1617
"test": "tsc"
1718
},
1819
"author": "Cloudflare Workers Team <[email protected]> (https://workers.cloudflare.com)",

0 commit comments

Comments
 (0)