mirror of
https://github.com/EbookFoundation/free-programming-books.git
synced 2024-12-19 09:56:13 +00:00
18 lines
308 B
YAML
18 lines
308 B
YAML
|
name: free-programming-books-lint
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Use Node.js
|
||
|
uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: '6.x'
|
||
|
- run: npm install -g free-programming-books-lint
|
||
|
- run: fpb-lint .
|