Skip to content

Commit b134b78

Browse files
committed
Update other github workflows
1 parent f5c4ac2 commit b134b78

5 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/publish-desktop.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
os: [macos-11, windows-2019, ubuntu-latest]
9+
os: [macos-12, windows-2019, ubuntu-latest]
1010

1111
steps:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-node@v2
1414
with:
1515
node-version: '14'
16-
check-latest: true
1716

1817
- name: Install dependencies
1918
run: yarn --immutable

.github/workflows/publish-mac.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ on: workflow_dispatch
33

44
jobs:
55
build-and-publish:
6-
runs-on: macos-11
6+
runs-on: macos-12
77

88
steps:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v2
1111
with:
1212
node-version: '14'
13-
check-latest: true
1413

1514
- name: Install dependencies
1615
run: yarn --immutable

.github/workflows/publish-ubuntu.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
- uses: actions/setup-node@v2
1111
with:
1212
node-version: '14'
13-
check-latest: true
1413

1514
- name: Install dependencies
1615
run: yarn --immutable

.github/workflows/publish-windows.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
- uses: actions/setup-node@v2
1111
with:
1212
node-version: '14'
13-
check-latest: true
1413

1514
- name: Install dependencies
1615
run: yarn --immutable

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"[javascript]": {
1616
"editor.formatOnSave": true,
1717
"editor.codeActionsOnSave": {
18-
"source.organizeImports": false
18+
"source.organizeImports": "never"
1919
}
2020
},
2121
"[javascriptreact]": {
@@ -48,4 +48,9 @@
4848
"editor.tabSize": 2,
4949
"editor.detectIndentation": false,
5050
"typescript.tsdk": "node_modules/typescript/lib",
51+
"[javascriptreact][typescript][typescriptreact]": {
52+
"editor.codeActionsOnSave": {
53+
"source.organizeImports": "explicit"
54+
}
55+
},
5156
}

0 commit comments

Comments
 (0)