Skip to content

Commit

Permalink
fix(chore): lint code on CI run
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolink committed Oct 1, 2021
1 parent 9caadce commit ec812b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
- run: npm install
- run: npm run build
- run: npm run tsc
- run: npm run lint
- run: npm run prettier:check
- run: npm run test:cover
release:
docker:
Expand Down
2 changes: 1 addition & 1 deletion src/get-user-agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function getBrowserOS(): string | null {
return null
}

type PlatformMap = Record<string, 'Android' | 'Linux' | 'Windows' | 'macOS'>
type PlatformMap = Record<string, 'Android' | 'Linux' | 'Windows' | 'macOS'>

function getNodeOS(): string | null {
const platform = os.platform() || 'linux'
Expand Down

0 comments on commit ec812b9

Please sign in to comment.