Skip to content

Commit

Permalink
Update other github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Dec 13, 2023
1 parent f5c4ac2 commit b134b78
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/publish-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11, windows-2019, ubuntu-latest]
os: [macos-12, windows-2019, ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
check-latest: true

- name: Install dependencies
run: yarn --immutable
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/publish-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ on: workflow_dispatch

jobs:
build-and-publish:
runs-on: macos-11
runs-on: macos-12

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
check-latest: true

- name: Install dependencies
run: yarn --immutable
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/publish-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '14'
check-latest: true

- name: Install dependencies
run: yarn --immutable
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/publish-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '14'
check-latest: true

- name: Install dependencies
run: yarn --immutable
Expand Down
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"[javascript]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": false
"source.organizeImports": "never"
}
},
"[javascriptreact]": {
Expand Down Expand Up @@ -48,4 +48,9 @@
"editor.tabSize": 2,
"editor.detectIndentation": false,
"typescript.tsdk": "node_modules/typescript/lib",
"[javascriptreact][typescript][typescriptreact]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
}

0 comments on commit b134b78

Please sign in to comment.