mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 21:54:42 +00:00
OS matrix for TypeScript
This commit is contained in:
parent
a09b308b4e
commit
e3223a7fd3
1 changed files with 8 additions and 1 deletions
9
.github/workflows/ci.yaml
vendored
9
.github/workflows/ci.yaml
vendored
|
@ -97,7 +97,13 @@ jobs:
|
||||||
|
|
||||||
typescript:
|
typescript:
|
||||||
name: TypeScript
|
name: TypeScript
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||||
|
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -111,6 +117,7 @@ jobs:
|
||||||
working-directory: ./editors/code
|
working-directory: ./editors/code
|
||||||
|
|
||||||
- run: npm audit || { sleep 10 && npm audit; } || { sleep 30 && npm audit; }
|
- run: npm audit || { sleep 10 && npm audit; } || { sleep 30 && npm audit; }
|
||||||
|
if: runner.os == 'Linux'
|
||||||
working-directory: ./editors/code
|
working-directory: ./editors/code
|
||||||
|
|
||||||
- run: npm run lint
|
- run: npm run lint
|
||||||
|
|
Loading…
Reference in a new issue