Skip to content

Commit

Permalink
only run linting step on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed Aug 14, 2020
1 parent eb0596c commit 619bcd6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ jobs:
- run: node -v
- run: npm ci
- run: npm run format:check

# only makes sense to check code format on 1 OS
- name: Linting 🧹
if: matrix.os == 'ubuntu-latest'
run: npm run format:check

- run: npm test

release:
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"titleBar.inactiveForeground": "#15202b99",
"statusBar.background": "#f9e64f",
"statusBarItem.hoverBackground": "#f7df1e",
"statusBar.foreground": "#15202b"
"statusBar.foreground": "#15202b",
"activityBar.activeBackground": "#fbed80"
},
"peacock.color": "#f9e64f",
"editor.formatOnPaste": false,
Expand Down

0 comments on commit 619bcd6

Please sign in to comment.