Skip to content

Commit

Permalink
chore: disable node 8.x from github workflows
Browse files Browse the repository at this point in the history
selenium web driver seems to require at least 10.x
  • Loading branch information
rchl committed Aug 31, 2019
1 parent e19d404 commit 3570d0e
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: CI

on: [push]
Expand All @@ -9,18 +10,18 @@ jobs:

strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [10.x, 12.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, lint, and test
run: |
yarn
yarn lint
yarn test
env:
CI: true
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, lint, and test
run: |
yarn
yarn lint
yarn test
env:
CI: true

0 comments on commit 3570d0e

Please sign in to comment.