mirror of
https://github.com/upgundecha/howtheysre
synced 2026-01-03 07:48:02 +00:00
24 lines
442 B
YAML
24 lines
442 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Run markdown lint
|
|
uses: nosborn/github-action-markdown-cli@v1.1.1
|
|
with:
|
|
files: README.md
|
|
config_file: ".markdownlint.json"
|
|
|
|
- name: Setup and run check list
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '12.x'
|
|
- run: npm ci && npm test
|
|
|