Skip to content

Commit

Permalink
chore: Apply feedback from Gabe's review (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenmathieson authored Dec 14, 2022
1 parent deaed3f commit c817c5d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"*.{js,ts,tsx}": ["eslint --fix", "prettier --write", "yarn build"],
"*.{js,ts}": ["eslint --fix", "prettier --write", "yarn build"],
"*.{json,css,md}": ["prettier --write"]
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
name: Generate a VPAT report

on:
workflow_dispatch:
workflow_dispatch: # Manually trigger.
schedule:
- cron: "0 0 * * SUN"
- cron: "0 0 * * SUN" # Every Sunday at 00:00.

jobs:
generate_report:
Expand All @@ -22,7 +22,7 @@ jobs:
product-name: axe DeveloperHub
output-file: vpats/{DATE}-{PRODUCT}.md
vpat-label: VPAT
additional-labels: "PROD: axe-devhub"
additional-labels: "PROD: axe-devhub,some-other-label"
```
## Inputs
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"date-fns": "^2.29.3",
"meow": "8"
"meow": "^8"
},
"devDependencies": {
"@types/node": "^18.11.15",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true
"esModuleInterop": true,
"skipLibCheck": true
},
"exclude": ["node_modules", "**/*.test.ts"]
"exclude": ["**/*.test.ts"]
}

0 comments on commit c817c5d

Please sign in to comment.