Skip to content

Commit b5d3760

Browse files
authoredJan 24, 2021
fix(ci): use node v14 and v15 for actions (#277)
1 parent 20d3a09 commit b5d3760

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed
 

‎.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v2
14-
- name: Use Node.js 12
14+
- name: Use Node.js 14
1515
uses: actions/setup-node@v1
1616
with:
17-
node-version: 12.x
17+
node-version: 14.x
1818
- name: Install dependencies
1919
uses: bahmutov/npm-install@v1
2020
- name: Build example

‎.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2
15-
- name: Use Node.js 12
15+
- name: Use Node.js 14
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: 12.x
18+
node-version: 14.x
1919
- name: Install dependencies
2020
uses: bahmutov/npm-install@v1
2121
- name: Run tests

‎.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Node.js ${{ matrix.node }}
99
strategy:
1010
matrix:
11-
node: ["10.x", "11.x", "12.x", "13.x", "14.x"]
11+
node: ["10.x", "11.x", "12.x", "13.x", "14.x", "15.x"]
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2

‎package.json

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
"semantic-release": "17.3.7"
6969
},
7070
"peerDependencies": {
71-
"@types/youtube": "^0.0.38",
7271
"react": ">=0.14.1"
7372
},
7473
"engines": {

0 commit comments

Comments
 (0)
Please sign in to comment.