Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/cache/save@v5
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
key: node-modules-${{ hashFiles('npm-shrinkwrap.json') }}

format:
needs: setup
Expand All @@ -42,7 +42,7 @@ jobs:
- uses: actions/cache/restore@v5
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
key: node-modules-${{ hashFiles('npm-shrinkwrap.json') }}
- run: npm run format:check

lint:
Expand All @@ -56,7 +56,7 @@ jobs:
- uses: actions/cache/restore@v5
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
key: node-modules-${{ hashFiles('npm-shrinkwrap.json') }}
- run: npm run lint

security:
Expand All @@ -70,7 +70,7 @@ jobs:
- uses: actions/cache/restore@v5
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
key: node-modules-${{ hashFiles('npm-shrinkwrap.json') }}
- run: npm run security:audit

secrets:
Expand All @@ -84,7 +84,7 @@ jobs:
- uses: actions/cache/restore@v5
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
key: node-modules-${{ hashFiles('npm-shrinkwrap.json') }}
- run: npm run secrets:check

typecheck:
Expand All @@ -98,7 +98,7 @@ jobs:
- uses: actions/cache/restore@v5
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
key: node-modules-${{ hashFiles('npm-shrinkwrap.json') }}
- run: npm run typecheck

schema-check:
Expand Down
Loading