Skip to content

ci: ignore macos/node ver 10-15 #103

ci: ignore macos/node ver 10-15

ci: ignore macos/node ver 10-15 #103

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [10.x, 11.x, 12.x, 13.x, 14.x, 15.x, 16.x, 17.x, 18.x, 19.x, 20.x, 21.x, latest]
exclude:

Check failure on line 13 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 13, Col: 13): Unexpected value 'exclude'
- os: macos-latest
node-version: 10.x
- os: macos-latest
node-version: 11.x
- os: macos-latest
node-version: 12.x
- os: macos-latest
node-version: 13.x
- os: macos-latest
node-version: 14.x
- os: macos-latest
node-version: 15.x
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Test
run: npm test