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

pleaseeeee #1692

Merged
merged 29 commits into from
Feb 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .cache/json/_docs_javascript_bigo_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_javascript_clean-code_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_javascript_constructor-functions_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_javascript_for-loops_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_javascript_promises_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_javascript_review_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_javascript_this-is-about-this_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_leetcode_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_projects_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_projects_embeded-websites_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_projects_list-of-projects_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_projects_mini-projects2_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_projects_mini-projects_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_projects_my-websites_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_python_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_python_examples_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_python_flow-control_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_python_functions_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_python_google-sheets-api_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_python_intro-for-js-devs_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_python_python-ds_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_quick-reference_Emmet_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_quick-reference_all-emojis_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_quick-reference_create-react-app_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_quick-reference_git-bash_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_quick-reference_git-tricks_.json

This file was deleted.

1 change: 0 additions & 1 deletion .cache/json/_docs_quick-reference_google-firebase_.json

This file was deleted.

Empty file.
32 changes: 0 additions & 32 deletions .circleci/config.yml

This file was deleted.

84 changes: 42 additions & 42 deletions .github/workflows/latest-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,48 +3,48 @@ name: 'Tests: `nvm install-latest-npm`'
on: [pull_request, push]

jobs:
nodes:
name: 'nvm install-latest-npm'
runs-on: ubuntu-latest
nodes:
name: 'nvm install-latest-npm'
runs-on: ubuntu-latest

strategy:
matrix:
node-version:
- "11"
- "10"
- "9"
- "9.2"
- "9.1"
- "9.0"
- "8"
- "7"
- "6"
- "6.1"
- "5"
- "5.9"
- "4"
- "4.6"
- "4.5"
- "4.4"
- "3"
- "2"
- "1"
- "0.12"
- "0.10"
strategy:
matrix:
node-version:
- '11'
- '10'
- '9'
- '9.2'
- '9.1'
- '9.0'
- '8'
- '7'
- '6'
- '6.1'
- '5'
- '5.9'
- '4'
- '4.6'
- '4.5'
- '4.4'
- '3'
- '2'
- '1'
- '0.12'
- '0.10'

steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/run@main
name: 'nvm install-latest-npm'
with:
node-version: ${{ matrix.node-version }}
skip-ls-check: true
skip-install: true
shell-command: 'npm --version'
steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/run@main
name: 'nvm install-latest-npm'
with:
node-version: ${{ matrix.node-version }}
skip-ls-check: true
skip-install: true
shell-command: 'npm --version'

node:
name: 'nvm install-latest-npm'
needs: [nodes]
runs-on: ubuntu-latest
steps:
- run: 'echo tests completed'
node:
name: 'nvm install-latest-npm'
needs: [nodes]
runs-on: ubuntu-latest
steps:
- run: 'echo tests completed'
66 changes: 33 additions & 33 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,39 @@ name: 'Tests: linting'
on: [pull_request, push]

jobs:
eclint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/run@main
name: 'npm install && npm run eclint'
with:
node-version: 'lts/*'
command: 'eclint'
eclint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/run@main
name: 'npm install && npm run eclint'
with:
node-version: 'lts/*'
command: 'eclint'

dockerfile_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/run@main
name: 'npm install && npm run dockerfile_lint'
with:
node-version: 'lts/*'
command: 'dockerfile_lint'
dockerfile_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/run@main
name: 'npm install && npm run dockerfile_lint'
with:
node-version: 'lts/*'
command: 'dockerfile_lint'

doctoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/run@main
name: 'npm install && npm run doctoc'
with:
node-version: 'lts/*'
command: "doctoc:check"
doctoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ljharb/actions/node/run@main
name: 'npm install && npm run doctoc'
with:
node-version: 'lts/*'
command: 'doctoc:check'

test_naming:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: check tests filenames
run: ./rename_test.sh --check
test_naming:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: check tests filenames
run: ./rename_test.sh --check
27 changes: 27 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Makefile CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
runs-on: googleworkspace
build:BGOONZ_BLOG_2.0/.github/workflows/makefile.yml


steps:
- uses: actions/checkout@v2

- name: configure
run: ./configure

- name: Install dependencies
run: make

- name: Run check
run: make check

- name: Run distcheck
run: make distcheck
20 changes: 10 additions & 10 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
name: Gatsby Publish

on:
push:
branches:
- master
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: enriikke/gatsby-gh-pages-action@v2
with:
access-token: ${{ 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 }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: enriikke/gatsby-gh-pages-action@v2
with:
access-token: ${{ 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 }}
38 changes: 19 additions & 19 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ name: 'Tests: release process'
on: [pull_request, push]

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14"
- run: npm install
- name: Configure git
run: |
git config user.name github-actions
git config user.email [email protected]
git fetch --unshallow --tags -f || git fetch --tags -f
- name: Attempt `make release` process
run: echo proceed | make TAG=99.99.99 release
env:
GIT_EDITOR: "sed -i '1 s/^/99.99.99 make release test/'"
- name: Ensure tag is created
run: git tag | grep v99.99.99
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm install
- name: Configure git
run: |
git config user.name github-actions
git config user.email [email protected]
git fetch --unshallow --tags -f || git fetch --tags -f
- name: Attempt `make release` process
run: echo proceed | make TAG=99.99.99 release
env:
GIT_EDITOR: "sed -i '1 s/^/99.99.99 make release test/'"
- name: Ensure tag is created
run: git tag | grep v99.99.99
28 changes: 28 additions & 0 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: NodeJS with Webpack

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install
npx webpack
Loading