We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a09b308 commit e3223a7Copy full SHA for e3223a7
.github/workflows/ci.yaml
@@ -97,7 +97,13 @@ jobs:
97
98
typescript:
99
name: TypeScript
100
- runs-on: ubuntu-latest
+ strategy:
101
+ fail-fast: false
102
+ matrix:
103
+ os: [ubuntu-latest, windows-latest, macos-latest]
104
+
105
+ runs-on: ${{ matrix.os }}
106
107
steps:
108
- name: Checkout repository
109
uses: actions/checkout@v2
@@ -111,6 +117,7 @@ jobs:
111
117
working-directory: ./editors/code
112
118
113
119
- run: npm audit || { sleep 10 && npm audit; } || { sleep 30 && npm audit; }
120
+ if: runner.os == 'Linux'
114
121
115
122
116
123
- run: npm run lint
0 commit comments