Updated readme and removed circleci and related workflows.
This commit is contained in:
parent
31173fa72b
commit
8c6f2b36b4
|
@ -1,8 +0,0 @@
|
||||||
version: '2.1'
|
|
||||||
orbs:
|
|
||||||
codecov: codecov/codecov@3.2.3
|
|
||||||
workflows:
|
|
||||||
upload-to-codecov:
|
|
||||||
jobs:
|
|
||||||
- checkout
|
|
||||||
- codecov/upload
|
|
|
@ -1,42 +0,0 @@
|
||||||
# Use the latest 2.1 version of CircleCI pipeline process engine.
|
|
||||||
# See: https://circleci.com/docs/2.0/configuration-reference
|
|
||||||
version: 2.1
|
|
||||||
|
|
||||||
orbs:
|
|
||||||
# The Node.js orb contains a set of prepackaged CircleCI configuration you can utilize
|
|
||||||
# Orbs reduce the amount of configuration required for common tasks.
|
|
||||||
# See the orb documentation here: https://circleci.com/developer/orbs/orb/circleci/node
|
|
||||||
node: circleci/node@5.0.3
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
# Below is the definition of your job to build and test your app, you can rename and customize it as you want.
|
|
||||||
build-and-test:
|
|
||||||
# These next lines define a Docker executor: https://circleci.com/docs/2.0/executor-types/
|
|
||||||
# You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
|
|
||||||
# A list of available CircleCI Docker Convenience Images are available here: https://circleci.com/developer/images/image/cimg/node
|
|
||||||
docker:
|
|
||||||
- image: cimg/node:16.17.1
|
|
||||||
# Then run your tests!
|
|
||||||
# CircleCI will report the results back to your VCS provider.
|
|
||||||
steps:
|
|
||||||
# Checkout the code as the first step.
|
|
||||||
- checkout
|
|
||||||
# Next, the node orb's install-packages step will install the dependencies from a package.json.
|
|
||||||
# The orb install-packages step will also automatically cache them for faster future runs.
|
|
||||||
- node/install-packages:
|
|
||||||
# If you are using yarn, change the line below from "npm" to "yarn"
|
|
||||||
pkg-manager: npm
|
|
||||||
- run:
|
|
||||||
name: Run tests
|
|
||||||
command: yarn test && "echo Build Successful!"
|
|
||||||
|
|
||||||
workflows:
|
|
||||||
# Below is the definition of your workflow.
|
|
||||||
# Inside the workflow, you provide the jobs you want to run, e.g this workflow runs the build-and-test job above.
|
|
||||||
# CircleCI will run this workflow on every commit.
|
|
||||||
# For more details on extending your workflow, see the configuration docs: https://circleci.com/docs/2.0/configuration-reference/#workflows
|
|
||||||
sample:
|
|
||||||
jobs:
|
|
||||||
- build-and-test
|
|
||||||
# For running simple node tests, you could optionally use the node/test job from the orb to replicate and replace the job above in fewer lines.
|
|
||||||
# - node/test
|
|
|
@ -1,86 +0,0 @@
|
||||||
|
|
||||||
- name: Codecov
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
no-deps:
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [macos-latest, windows-latest, ubuntu-latest]
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
- uses: codecov/codecov-action@v3.1.
|
|
||||||
with:
|
|
||||||
flags: unittests # optional
|
|
||||||
name: codecov-umbrella # optional
|
|
||||||
fail_ci_if_error: true # optional (default = false)
|
|
||||||
verbose: true # optional (default = false)
|
|
||||||
|
|
||||||
- name: Upload coverage to Codecov (script)
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
files: ./coverage/script/coverage-final.json
|
|
||||||
flags: script,${{ matrix.os }}
|
|
||||||
name: codecov-script
|
|
||||||
verbose: true
|
|
||||||
- name: Upload coverage to Codecov (demo)
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
||||||
file: ./coverage/coverage-final.json
|
|
||||||
flags: demo,${{ matrix.os }}
|
|
||||||
name: codecov-demo
|
|
||||||
verbose: true
|
|
||||||
- name: Upload coverage to Codecov (version)
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
||||||
file: ./coverage/coverage-final.json
|
|
||||||
flags: version,${{ matrix.os }}
|
|
||||||
name: codecov-version
|
|
||||||
version: v0.1.0_8880
|
|
||||||
verbose: true
|
|
||||||
run:
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [macos-latest, windows-latest, ubuntu-latest]
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm install
|
|
||||||
- name: Lint
|
|
||||||
run: npm run lint
|
|
||||||
- name: Run tests and collect coverage
|
|
||||||
run: npm run test
|
|
||||||
- name: Upload coverage to Codecov (script)
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
files: ./coverage/script/coverage-final.json
|
|
||||||
flags: script,${{ matrix.os }}
|
|
||||||
name: codecov-script
|
|
||||||
verbose: true
|
|
||||||
- name: Upload coverage to Codecov (demo)
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
||||||
file: ./coverage/coverage-final.json
|
|
||||||
flags: demo,${{ matrix.os }}
|
|
||||||
name: codecov-demo
|
|
||||||
verbose: true
|
|
||||||
- name: Upload coverage to Codecov (version)
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
|
|
||||||
file: ./coverage/coverage-final.json
|
|
||||||
flags: version,${{ matrix.os }}
|
|
||||||
name: codecov-version
|
|
||||||
version: v0.1.0_8880
|
|
||||||
verbose: true
|
|
||||||
Footer
|
|
||||||
© 2022 GitHub, Inc.
|
|
||||||
Footer navigation
|
|
||||||
Terms
|
|
||||||
Privacy
|
|
||||||
|
|
2
LICENSE
2
LICENSE
|
@ -186,7 +186,7 @@
|
||||||
same "printed page" as the copyright notice for easier
|
same "printed page" as the copyright notice for easier
|
||||||
identification within third-party archives.
|
identification within third-party archives.
|
||||||
|
|
||||||
Copyright [yyyy] [name of copyright owner]
|
Copyright [2022] [NusserStudios]
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
|
24
README.md
24
README.md
|
@ -1,7 +1,7 @@
|
||||||
<p align="center" style="padding-top:20px">
|
<p align="center" style="padding-top:20px">
|
||||||
<img width="100px" src="images/logo-tailbliss-round.svg" align="center" alt="GitHub Readme Stats" />
|
<img width="100px" src="images/logo-tailbliss-round.svg" align="center" alt="GitHub Readme Stats" />
|
||||||
<h2 align="center">TailBliss</h2>
|
<h1 align="center">TailBliss</h1>
|
||||||
<p align="center">A Hugo Starter template with TailWindCSS and Alpine.js.</p>
|
<p align="center">TailBliss is an opinionated Hugo Starter with Tailwind CSS 3.2 and Alpine.js with light/dark modes.</p>
|
||||||
</p>
|
</p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://github.com/nusserstudios/tailbliss/actions/">
|
<a href="https://github.com/nusserstudios/tailbliss/actions/">
|
||||||
|
@ -10,9 +10,6 @@
|
||||||
<a href="https://github.com/nusserstudios/tailbliss/graphs/contributors">
|
<a href="https://github.com/nusserstudios/tailbliss/graphs/contributors">
|
||||||
<img alt="GitHub Contributors" src="https://img.shields.io/github/contributors/nusserstudios/tailbliss" />
|
<img alt="GitHub Contributors" src="https://img.shields.io/github/contributors/nusserstudios/tailbliss" />
|
||||||
</a>
|
</a>
|
||||||
<a href="https://codecov.io/gh/nusserstudios/tailbliss">
|
|
||||||
<img src="https://codecov.io/gh/nusserstudios/tailbliss/branch/master/graph/badge.svg" />
|
|
||||||
</a>
|
|
||||||
<a href="https://img.shields.io/github/contributors/nusserstudios/tailblississues">
|
<a href="https://img.shields.io/github/contributors/nusserstudios/tailblississues">
|
||||||
<img alt="Issues" src="https://img.shields.io/github/contributors/nusserstudios/tailbliss?color=0088ff" />
|
<img alt="Issues" src="https://img.shields.io/github/contributors/nusserstudios/tailbliss?color=0088ff" />
|
||||||
</a>
|
</a>
|
||||||
|
@ -21,16 +18,19 @@
|
||||||
</a>
|
</a>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<a href="https://a.paddle.com/v2/click/16413/119403?link=1227">
|
<a href="https://gohugo.io/">
|
||||||
<img src="https://img.shields.io/badge/Supported%20by-VSCode%20Power%20User%20%E2%86%92-gray.svg?colorA=655BE1&colorB=4F44D6&style=for-the-badge"/>
|
<img src="https://img.shields.io/badge/Hugo%20-0.105.0%20-gray.svg?colorA=c9177e&colorB=FF4088&style=for-the-badge"/>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://a.paddle.com/v2/click/16413/119403?link=2345">
|
<a href="https://tailwindcss.com/">
|
||||||
<img src="https://img.shields.io/badge/Supported%20by-Node%20Cli.com%20%E2%86%92-gray.svg?colorA=61c265&colorB=4CAF50&style=for-the-badge"/>
|
<img src="https://img.shields.io/badge/TailwindCSS%20-V3-gray.svg?colorA=0284c7&colorB=38bdf8&style=for-the-badge"/>
|
||||||
|
</a>
|
||||||
|
<a href="https://alpinejs.dev/">
|
||||||
|
<img src="https://img.shields.io/badge/Alpine.js%20-V3-gray.svg?colorA=68a5af&colorB=77c1d2&style=for-the-badge"/>
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="#demo">View Demo</a>
|
<a href="https://tailbliss.netlify.app/">View Demo</a>
|
||||||
·
|
·
|
||||||
<a href="https://github.com/nusserstudios/tailbliss/issues/new/choose">Report Bug</a>
|
<a href="https://github.com/nusserstudios/tailbliss/issues/new/choose">Report Bug</a>
|
||||||
·
|
·
|
||||||
|
@ -40,10 +40,6 @@
|
||||||
</p>
|
</p>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
# TailBliss
|
|
||||||
Hugo + TailwindCSS 3.2.0 + Alpine.js for Hacktoberfest
|
|
||||||
|
|
||||||
TailBliss is an opinionated Hugo Starter with Tailwind CSS 3.2 and Alpine.js with light/dark modes.
|
|
||||||
|
|
||||||
**Install to VS Code with:**
|
**Install to VS Code with:**
|
||||||
`git clone git@github.com:nusserstudios/hugo-twcss-alpine.git your-name`
|
`git clone git@github.com:nusserstudios/hugo-twcss-alpine.git your-name`
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
20f9c9d78483fce977b6cc39e231a734a23bcd36f4d536bb7355222fb88d02bc codecov
|
|
|
@ -1,16 +0,0 @@
|
||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCgAdFiEEJwNOf9uFDgu8LGL/gGuyiu13mGkFAmMsvyQACgkQgGuyiu13
|
|
||||||
mGmStA/+N4roe/N6hA78uO55SL8/8tfS75QYe+PbRF3nN+mpXsyik+gMZWfu9SLT
|
|
||||||
lQJK2T9PfU6dFx5VnceoENXgnH+SUvDLorKUOwTolXMIEos9bLCPRcgfe3AkTeZR
|
|
||||||
2sHZcDj75nmcfEpO9Tf/Jpq2PPrP24J3S822/v3ZT8lca9jJe8CJlBL15yXC1kgD
|
|
||||||
Vk72+r9KzAoAu6bCEvBOOIFHHNfVBf0635vamRFCHFgjN1rRJW5cuyieZr9rYa22
|
|
||||||
1KDpN6vijJwUlrwB7V8wTvaeOEinR5Fzo55TtjTtE4brfaOF2KCzM33Czzep3SfH
|
|
||||||
OPJENE1+A+/bleRcVok5qmRfvMThSITE98INNk4qCVsB1YqTOvtJs5rFtyuH/Xqf
|
|
||||||
674HAqeNjzXvFME5oX4Hm31X1Y4rfzH0738H25J//3GqZWahivq7e8ElyYP+CI0H
|
|
||||||
pXbeN6E9Zup/QR6YjYWBV35AvRscC7v4e6HnlN9ctTuAd0VZJXI8JLM1XTgiQnIQ
|
|
||||||
rql/7lIYrvzLerPmzVoAmYZuV2iAE7pxfo3Iy9zEtgV8cF42peE3TDyrqj5Ylbtc
|
|
||||||
1pKlfIIAhoB/ff2hIvGonXG4OgTCCQrUvbtI8KsNi6UFPX5jhCaltKMsLG/JPM+Q
|
|
||||||
vXPa43eZ+aWPHOi9dFdlg98GCFesSVKLECkU4DjoZxJsI493PrQ=
|
|
||||||
=IHR5
|
|
||||||
-----END PGP SIGNATURE-----
|
|
Loading…
Reference in New Issue