mirror of
https://github.com/Anduin2017/HowToCook.git
synced 2025-01-16 13:12:55 +08:00
18 lines
324 B
YAML
18 lines
324 B
YAML
name: Continuous Integration
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
markdown-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '16'
|
|
cache: 'npm'
|
|
- run: npm install
|
|
- run: npm run lint
|