📚 Freely available programming books
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.
|
|
|
name: free-programming-books-lint
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Use Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
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/
|