awesome-ipfs/.circleci/config.yml
Marcin Rataj 496d64569d
chore: move to Fleek
Closes #418

License: MIT
Signed-off-by: Marcin Rataj <lidel@lidel.org>
2022-08-02 00:01:56 +02:00

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