Update ci.yml to run CI script on Node 15 (exclude only problematic older versions). (#356)

This commit is contained in:
David Anson 2020-12-10 22:45:26 -08:00 committed by GitHub
parent a564b07388
commit 55360058c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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