Remove CircleCI config
This commit is contained in:
parent
30825ba0e6
commit
f1b4c28fe4
2 changed files with 0 additions and 32 deletions
|
@ -1,31 +0,0 @@
|
||||||
version: 2.0
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
docker:
|
|
||||||
- image: circleci/node:10.5.0-stretch-browsers
|
|
||||||
environment:
|
|
||||||
- npm_config_loglevel: notice
|
|
||||||
steps:
|
|
||||||
- checkout
|
|
||||||
- run:
|
|
||||||
name: Checkout submodules
|
|
||||||
command: git submodule sync && git submodule update --init
|
|
||||||
- run:
|
|
||||||
name: Install Hugo
|
|
||||||
command: wget https://github.com/gohugoio/hugo/releases/download/v0.68.3/hugo_extended_0.68.3_Linux-64bit.deb -O /tmp/hugo.deb && sudo dpkg -i /tmp/hugo.deb
|
|
||||||
- restore_cache:
|
|
||||||
key: npm-{{ checksum "package-lock.json" }}
|
|
||||||
- run:
|
|
||||||
name: Install dependencies
|
|
||||||
command: npm ci
|
|
||||||
- save_cache:
|
|
||||||
key: npm-{{ checksum "package-lock.json" }}
|
|
||||||
paths:
|
|
||||||
- node_modules
|
|
||||||
- run:
|
|
||||||
name: Build site
|
|
||||||
command: ./scripts/release.sh
|
|
||||||
- run:
|
|
||||||
name: Run Tests
|
|
||||||
command: ./scripts/test.sh
|
|
|
@ -1,6 +1,5 @@
|
||||||
# My Website
|
# My Website
|
||||||
|
|
||||||
[![Circle CI](https://circleci.com/gh/RealOrangeOne/theorangeone.net.svg?style=svg)](https://circleci.com/gh/RealOrangeOne/theorangeone.net)
|
|
||||||
![Deploy](https://github.com/RealOrangeOne/theorangeone.net/workflows/Deploy/badge.svg)
|
![Deploy](https://github.com/RealOrangeOne/theorangeone.net/workflows/Deploy/badge.svg)
|
||||||
![CI](https://github.com/RealOrangeOne/theorangeone.net/workflows/CI/badge.svg)
|
![CI](https://github.com/RealOrangeOne/theorangeone.net/workflows/CI/badge.svg)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue