mirror of
https://github.com/ipfs/awesome-ipfs.git
synced 2024-10-01 01:35:37 -04:00
496d64569d
Closes #418 License: MIT Signed-off-by: Marcin Rataj <lidel@lidel.org>
37 lines
705 B
YAML
37 lines
705 B
YAML
version: 2
|
|
jobs:
|
|
awesome:
|
|
docker:
|
|
- image: circleci/ruby:2.4.2-jessie-node
|
|
steps:
|
|
- checkout
|
|
- run: gem install awesome_bot
|
|
- run: awesome_bot --allow 429 --allow-redirect --allow-dupe --allow-ssl -w ipfs.io README.md
|
|
|
|
build:
|
|
docker:
|
|
- image: circleci/node:10.15.1-browsers
|
|
environment:
|
|
NO_SANDBOX: true
|
|
steps:
|
|
- checkout
|
|
- run: npm ci
|
|
- run: npm run build
|
|
|
|
workflows:
|
|
version: 2
|
|
check-links:
|
|
triggers:
|
|
- schedule:
|
|
cron: "0 0 * * *"
|
|
filters:
|
|
branches:
|
|
only:
|
|
- master
|
|
jobs:
|
|
- awesome
|
|
checks:
|
|
jobs:
|
|
- awesome
|
|
- build
|