Update OSS node version (#3822)
Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/3822 Update Node version in CI pipeline Reviewed By: lblasa Differential Revision: D37207646 fbshipit-source-id: 157d1da9b01ca3ad34047908abc629f84d6736bc
This commit is contained in:
committed by
Facebook GitHub Bot
parent
f5992d3489
commit
41d7b2a307
4
.github/workflows/js.yml
vendored
4
.github/workflows/js.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2
|
- uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '16.x'
|
||||||
- name: yarn install (with retry)
|
- name: yarn install (with retry)
|
||||||
uses: nick-invision/retry@v2.6.0
|
uses: nick-invision/retry@v2.6.0
|
||||||
with:
|
with:
|
||||||
@@ -33,7 +33,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2
|
- uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '16.x'
|
||||||
- name: js-flipper - yarn install (with retry)
|
- name: js-flipper - yarn install (with retry)
|
||||||
uses: nick-invision/retry@v2.6.0
|
uses: nick-invision/retry@v2.6.0
|
||||||
with:
|
with:
|
||||||
|
|||||||
2
.github/workflows/nodejs-doctor.yml
vendored
2
.github/workflows/nodejs-doctor.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '16.x'
|
||||||
- name: install
|
- name: install
|
||||||
working-directory: ${{env.doctor-directory}}
|
working-directory: ${{env.doctor-directory}}
|
||||||
run: yarn
|
run: yarn
|
||||||
|
|||||||
2
.github/workflows/nodejs-pkg.yml
vendored
2
.github/workflows/nodejs-pkg.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '16.x'
|
||||||
- name: install
|
- name: install
|
||||||
working-directory: ${{env.pkg-directory}}
|
working-directory: ${{env.pkg-directory}}
|
||||||
run: yarn
|
run: yarn
|
||||||
|
|||||||
2
.github/workflows/publish-npm.yml
vendored
2
.github/workflows/publish-npm.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '16.x'
|
||||||
- name: Install
|
- name: Install
|
||||||
run: yarn
|
run: yarn
|
||||||
- name: Set versions
|
- name: Set versions
|
||||||
|
|||||||
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
@@ -56,7 +56,7 @@ jobs:
|
|||||||
ref: ${{ needs.release.outputs.tag }}
|
ref: ${{ needs.release.outputs.tag }}
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '16.x'
|
||||||
- name: Install
|
- name: Install
|
||||||
uses: nick-invision/retry@v2.6.0
|
uses: nick-invision/retry@v2.6.0
|
||||||
with:
|
with:
|
||||||
@@ -88,7 +88,7 @@ jobs:
|
|||||||
ref: ${{ needs.release.outputs.tag }}
|
ref: ${{ needs.release.outputs.tag }}
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '16.x'
|
||||||
- name: Install
|
- name: Install
|
||||||
uses: nick-invision/retry@v2.6.0
|
uses: nick-invision/retry@v2.6.0
|
||||||
with:
|
with:
|
||||||
@@ -120,7 +120,7 @@ jobs:
|
|||||||
ref: ${{ needs.release.outputs.tag }}
|
ref: ${{ needs.release.outputs.tag }}
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '16.x'
|
||||||
- name: Install
|
- name: Install
|
||||||
uses: nick-invision/retry@v2.6.0
|
uses: nick-invision/retry@v2.6.0
|
||||||
with:
|
with:
|
||||||
@@ -154,7 +154,7 @@ jobs:
|
|||||||
ref: ${{ needs.release.outputs.tag }}
|
ref: ${{ needs.release.outputs.tag }}
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '16.x'
|
||||||
- name: Install
|
- name: Install
|
||||||
uses: nick-invision/retry@v2.0.0
|
uses: nick-invision/retry@v2.0.0
|
||||||
with:
|
with:
|
||||||
|
|||||||
Reference in New Issue
Block a user