markdownlint/.github/workflows/nodejs.yml
2019-12-30 13:54:43 -08:00

28 lines
558 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: [8.x, 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: Install Dependencies
run: npm install --no-package-lock
- name: Run Tests
run: npm run ci