mirror of
https://github.com/iipc/awesome-web-archiving.git
synced 2024-11-20 11:28:04 -05:00
101ee998d9
* Add Services section * Add TOC headings * Update Node version for linting * Node 12 is very old and linting is failing. So trying the most recent LTS version. * Fix up linting problems
18 lines
399 B
YAML
18 lines
399 B
YAML
name: Awesome Lint
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
run-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-node@master
|
|
with:
|
|
node-version: 20.x
|
|
- name: Install awesome-lint CLI
|
|
run: npm install -g awesome-lint
|
|
- name: Run Awesome Lint
|
|
run: awesome-lint
|