HowToCook/.github/workflows/ci.yml

18 lines
324 B
YAML
Raw Permalink Normal View History

2022-03-05 00:03:12 +08:00
name: Continuous Integration
2022-01-04 11:24:15 +08:00
on:
pull_request:
2022-03-04 23:58:29 +08:00
branches: [ master ]
2022-01-04 11:24:15 +08:00
jobs:
2022-03-05 00:06:56 +08:00
markdown-lint:
2022-01-04 11:24:15 +08:00
runs-on: ubuntu-latest
steps:
2022-03-12 14:36:27 +08:00
- uses: actions/checkout@v2
2022-03-12 14:34:23 +08:00
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
2022-03-12 14:38:20 +08:00
- run: npm install
- run: npm run lint