Skip to content

Commit

Permalink
Upgrade build environments
Browse files Browse the repository at this point in the history
MacOS -> 10.15
Retire Node 8
Build on Node 14
  • Loading branch information
implausible committed Jul 28, 2020
1 parent b7c1259 commit e71eea7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Expand Up @@ -14,8 +14,8 @@ jobs:
name: "*nix Tests"
strategy:
matrix:
node: [8, 10, 12]
os: [ubuntu-16.04, macOS-10.14]
node: [10, 12, 14]
os: [ubuntu-16.04, macOS-10.15]
runs-on: ${{ matrix.os }}
steps:
- name: Setup Environment
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@master

- name: Use Node.js 8.x
- name: Use Node.js
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
name: Windows Tests
strategy:
matrix:
node: [8, 10, 12]
node: [10, 12, 14]
arch: [x86, x64]
runs-on: windows-2016
steps:
Expand All @@ -86,7 +86,7 @@ jobs:
- uses: actions/checkout@master

- name: Use Node.js 8.x
- name: Use Node.js
uses: implausible/setup-node@feature/expose-architecture-override
with:
node-version: ${{ matrix.node }}
Expand Down

0 comments on commit e71eea7

Please sign in to comment.