Don't uninstall typescript before npm ci in GHA (#50062)

This commit is contained in:
Jake Bailey 2022-07-27 09:42:22 -07:00 committed by GitHub
parent df58836577
commit adfb20fbeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 8 deletions

View File

@ -31,10 +31,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- name: Remove existing TypeScript
run: |
npm uninstall typescript --no-save
npm uninstall tslint --no-save
- run: npm ci
# Re: https://github.com/actions/setup-node/pull/125

View File

@ -12,10 +12,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
- name: Remove existing TypeScript
run: |
npm uninstall typescript --no-save
npm uninstall tslint --no-save
- name: npm install and test
run: |
npm ci