Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add colors #11

Open
wants to merge 32 commits into
base: seed
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@

name: CI


# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the seed branch
on:
pull_request:
branches: [ seed ]


# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
Expand Down Expand Up @@ -46,7 +44,16 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Download Artifacts
- uses: actions/download-artifact@master
with:
name: webpack artifacts
path: public/
#- uses: actions/download-artifact@master
# with:
# name: webpack artifacts
# path: public/
- run: |
echo
for i in {40..47}; do s="\033[1;"$i"m \033[0m\n"; echo -e "\e[32mDreaming in \e[0m \e[${i};5m color \e[0m"; done;
for i in {1..255} ; do
printf "\x1b[38;5;${i}m%3d " "${i}"
if (( $i == 15 )) || (( $i > 15 )) && (( ($i) % 15 == 0 )); then
echo;
fi
done