markdownlint/.github/workflows/nodejs.yml
2020-01-11 13:00:04 -08:00

28 lines
559 B
YAML

name: CI
on:
push:
pull_request:
schedule:
- cron: '30 12 * * *'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [10.x, 12.x, 13.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: Install Dependencies
run: npm install --no-package-lock
- name: Run Tests
run: npm run ci