Update CI to use Node 14

This commit is contained in:
Benjamin Staneck 2020-11-01 07:06:43 +01:00 committed by GitHub
parent dbe3e38b9e
commit 0cc542aa83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ jobs:
runs-on: macos-latest runs-on: macos-latest
strategy: strategy:
matrix: matrix:
node-version: [12.x] node-version: [14.x]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -29,8 +29,6 @@ jobs:
cp build/canary.icns build/icon.icns cp build/canary.icns build/icon.icns
- name: Build - name: Build
run: yarn run dist --publish=never run: yarn run dist --publish=never
env:
CI: true
- name: Get macOS Artifact Names - name: Get macOS Artifact Names
id: getmacosfilename id: getmacosfilename
run: | run: |
@ -45,7 +43,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [12.x] node-version: [14.x]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -63,9 +61,7 @@ jobs:
cp build/canary.ico build/icon.ico cp build/canary.ico build/icon.ico
cp build/canary.icns build/icon.icns cp build/canary.icns build/icon.icns
- name: Build - name: Build
run: yarn run dist --publish=never run: yarn run dist --publish=never
env:
CI: true
- name: Get Linux Artifact Names - name: Get Linux Artifact Names
id: getlinuxfilename id: getlinuxfilename
run: | run: |
@ -101,7 +97,7 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
strategy: strategy:
matrix: matrix:
node-version: [12.x] node-version: [14.x]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -120,8 +116,6 @@ jobs:
Copy-Item .\build\canary.icns .\build\icon.icns Copy-Item .\build\canary.icns .\build\icon.icns
- name: Build - name: Build
run: yarn run dist --publish=never run: yarn run dist --publish=never
env:
CI: true
- name: Get Windows Artifact Names - name: Get Windows Artifact Names
id: getwindowsfilename id: getwindowsfilename
run: | run: |