Remove Node 10.x logic from CI workflow. (#465)

This commit is contained in:
Darius D 2021-12-11 15:02:04 -06:00 committed by GitHub
parent 109e0d8cb6
commit 5167f0e576
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,8 +27,8 @@ jobs:
- name: Install Dependencies
run: npm install --no-package-lock
- name: Run All Validations
if: ${{ matrix.node-version != '10.x' && matrix.node-version != '12.x' }}
if: ${{ matrix.node-version != '12.x' }}
run: npm run ci
- name: Run Tests Only
if: ${{ matrix.node-version == '10.x' || matrix.node-version == '12.x' }}
if: ${{ matrix.node-version == '12.x' }}
run: npm run test