Skip to content

Commit edaa8aa

Browse files
authored
Merge pull request microsoft#39989 from amcasey/pinned-release-4.0
Pin dependencies in release branch
2 parents f88f306 + 47c23aa commit edaa8aa

File tree

5 files changed

+8783
-9
lines changed

5 files changed

+8783
-9
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [10.x, 12.x, 13.x]
19+
node-version: [10.x, 12.x, 14.x]
2020

2121
steps:
2222
- uses: actions/checkout@v2
@@ -30,8 +30,7 @@ jobs:
3030
run: |
3131
npm uninstall typescript --no-save
3232
npm uninstall tslint --no-save
33-
- run: npm install
34-
- run: npm update
33+
- run: npm ci
3534

3635
# Re: https://github.com/actions/setup-node/pull/125
3736
- name: Register Problem Matcher for TSC
@@ -45,4 +44,4 @@ jobs:
4544

4645
- name: Validate the browser can import TypeScript
4746
run: gulp test-browser-integration
48-
47+

.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)