Skip to content

Commit

Permalink
Fix line endings settings for prettier (#77)
Browse files Browse the repository at this point in the history
* Fix line endings settings for prettier

* Runs lint GitHub Action on Windows

* Fix lint action and adds macOS to the list of platforms
  • Loading branch information
pirelenito committed Jul 11, 2022
1 parent 79e9ce9 commit c36a0cd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
- run: yarn test --ci

lint:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- run: yarn install --immutable
Expand Down
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
"trailingComma": "all",
"endOfLine": "auto"
}

0 comments on commit c36a0cd

Please sign in to comment.