2019-08-14 08:43:25 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-04-24 13:09:13 +00:00
|
|
|
include:
|
|
|
|
# EOL: April 2021
|
|
|
|
- os: ubuntu-latest
|
2020-04-11 09:18:09 +00:00
|
|
|
node_version: 10.x
|
2019-08-14 08:43:25 +00:00
|
|
|
|
2020-04-24 13:09:13 +00:00
|
|
|
# EOL: April 2022
|
|
|
|
- os: ubuntu-latest
|
|
|
|
node_version: 12.x
|
|
|
|
|
|
|
|
# EOL: April 2023
|
|
|
|
- os: ubuntu-latest
|
|
|
|
node_version: 14.x
|
|
|
|
- os: macOS-latest
|
|
|
|
node_version: 14.x
|
|
|
|
- os: windows-latest
|
|
|
|
node_version: 14.x
|
|
|
|
|
2019-08-14 08:43:25 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
|
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node_version }}
|
|
|
|
|
|
|
|
- name: Install
|
|
|
|
run: yarn --frozen-lockfile --non-interactive
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: yarn build
|
|
|
|
env:
|
|
|
|
NODE_ENV: production
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: yarn test
|