Files
howtheysre/.github/workflows/workflow.yml
Unmesh Gundecha c68d303aea Fix workflow
2021-02-21 17:54:08 +08:00

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