Skip to content

Commit 9294e96

Browse files
authored
Merge pull request #39988 from amcasey/pinned-release-3.9
Make release-3.9 buildable
2 parents a7d8011 + 5237f9e commit 9294e96

File tree

5 files changed

+8766
-9
lines changed

5 files changed

+8766
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ jobs:
3232
npm uninstall tslint --no-save
3333
- name: npm install and test
3434
run: |
35-
npm install
36-
npm update
35+
npm ci
3736
npm test
38-
37+
3938
- name: Validate the browser can import TypeScript
4039
run: gulp test-browser-integration
41-

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ tests/cases/user/*/**/*.d.ts
8484
tests/baselines/reference/dt
8585
.failed-tests
8686
TEST-results.xml
87-
package-lock.json
8887
tests/cases/user/TypeScript-React-Starter/TypeScript-React-Starter
8988
tests/cases/user/TypeScript-Node-Starter/TypeScript-Node-Starter
9089
tests/cases/user/TypeScript-React-Native-Starter/TypeScript-React-Native-Starter

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: node_js
22

33
node_js:
4-
- 'node'
4+
- '14'
5+
- '12'
56
- '10'
6-
- '8'
77

88
env:
99
- workerCount=3 timeout=600000
@@ -18,7 +18,7 @@ branches:
1818

1919
install:
2020
- npm uninstall typescript --no-save
21-
- npm install
21+
- npm ci
2222

2323
cache:
2424
directories:

0 commit comments

Comments
 (0)