jobs:
build_latest_browserstack:
- name: Node latest with browserstack
+ name: Node 14 with browserstack
runs-on: ubuntu-latest
- container: node:latest
+ strategy:
+ matrix:
+ node-version: [14.x] # latest (16) not functional
steps:
- uses: actions/checkout@v1
- name: install system dependencies
run: yarn test:javascript:browserstack
build_latest:
- name: Node latest
+ name: Node 14
runs-on: ubuntu-latest
- container: node:current
+ strategy:
+ matrix:
+ node-version: [14.x] # latest (16) not functional
steps:
- uses: actions/checkout@v1
- name: install system dependencies