Skip to content

Commit

Permalink
Updates CI to node 14 (should fix CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Nov 4, 2021
1 parent d099fd4 commit ee7357b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd-insiders.yml
Expand Up @@ -53,9 +53,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '14'
- name: Install
run: yarn
- name: Apply insiders patch
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd-stable.yml
Expand Up @@ -13,9 +13,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '14'
- name: Setup Environment
run: node -e "console.log('PACKAGE_VERSION=' + require('./package.json').version + '\nPACKAGE_NAME=' + require('./package.json').name + '-' + require('./package.json').version)" >> $GITHUB_ENV
- name: Verify versions
Expand Down

0 comments on commit ee7357b

Please sign in to comment.