You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
418 B
20 lines
418 B
name: free-programming-books-lint |
|
|
|
on: [push, pull_request] |
|
|
|
jobs: |
|
build: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
- uses: actions/checkout@v2 |
|
- name: Use Node.js |
|
uses: actions/setup-node@v1 |
|
with: |
|
node-version: '16.x' |
|
- run: npm install -g free-programming-books-lint |
|
- run: fpb-lint ./books/ |
|
- run: fpb-lint ./casts/ |
|
- run: fpb-lint ./courses/ |
|
- run: fpb-lint ./more/
|
|
|