forked from anuraghazra/github-readme-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from anuraghazra/master
[pull] master from anuraghazra:master
- Loading branch information
Showing
90 changed files
with
4,483 additions
and
3,626 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,95 @@ | ||
themes: themes/index.js | ||
doc-translation: docs/* | ||
themes: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- themes/index.js | ||
|
||
doc-translation: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- docs/* | ||
|
||
card-i18n: | ||
- src/translations.js | ||
- src/common/I18n.js | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- src/translations.js | ||
- src/common/I18n.js | ||
|
||
documentation: | ||
- readme.md | ||
- CONTRIBUTING.md | ||
- CODE_OF_CONDUCT.md | ||
- SECURITY.md | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- readme.md | ||
- CONTRIBUTING.md | ||
- CODE_OF_CONDUCT.md | ||
- SECURITY.md | ||
|
||
dependencies: | ||
- package.json | ||
- package-lock.json | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- package.json | ||
- package-lock.json | ||
|
||
lang-card: | ||
- api/top-langs.js | ||
- src/cards/top-languages-card.js | ||
- src/fetchers/top-languages-fetcher.js | ||
- tests/fetchTopLanguages.test.js | ||
- tests/renderTopLanguagesCard.test.js | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- api/top-langs.js | ||
- src/cards/top-languages-card.js | ||
- src/fetchers/top-languages-fetcher.js | ||
- tests/fetchTopLanguages.test.js | ||
- tests/renderTopLanguagesCard.test.js | ||
- tests/top-langs.test.js | ||
|
||
repo-card: | ||
- api/pin.js | ||
- src/cards/repo-card.js | ||
- src/fetchers/repo-fetcher.js | ||
- tests/fetchRepo.test.js | ||
- tests/renderRepoCard.test.js | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- api/pin.js | ||
- src/cards/repo-card.js | ||
- src/fetchers/repo-fetcher.js | ||
- tests/fetchRepo.test.js | ||
- tests/renderRepoCard.test.js | ||
- tests/pin.test.js | ||
|
||
stats-card: | ||
- api/index.js | ||
- src/cards/stats-card.js | ||
- src/fetchers/stats-fetcher.js | ||
- tests/fetchStats.test.js | ||
- tests/renderStatsCard.test.js | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- api/index.js | ||
- src/cards/stats-card.js | ||
- src/fetchers/stats-fetcher.js | ||
- tests/fetchStats.test.js | ||
- tests/renderStatsCard.test.js | ||
- tests/api.test.js | ||
|
||
wakatime-card: | ||
- api/wakatime.js | ||
- src/cards/wakatime-card.js | ||
- src/fetchers/wakatime-fetcher.js | ||
- tests/fetchWakatime.test.js | ||
- tests/renderWakatimeCard.test.js | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- api/wakatime.js | ||
- src/cards/wakatime-card.js | ||
- src/fetchers/wakatime-fetcher.js | ||
- tests/fetchWakatime.test.js | ||
- tests/renderWakatimeCard.test.js | ||
- tests/wakatime.test.js | ||
|
||
gist-card: | ||
- api/gist.js | ||
- src/cards/gist-card.js | ||
- src/fetchers/gist-fetcher.js | ||
- tests/fetchGist.test.js | ||
- tests/renderGistCard.test.js | ||
ranks: src/calculateRank.js | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- api/gist.js | ||
- src/cards/gist-card.js | ||
- src/fetchers/gist-fetcher.js | ||
- tests/fetchGist.test.js | ||
- tests/renderGistCard.test.js | ||
- tests/gist.test.js | ||
|
||
ranks: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- src/calculateRank.js | ||
|
||
ci: | ||
- .github/workflows/* | ||
- scripts/* | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .github/workflows/* | ||
- scripts/* | ||
|
||
infrastructure: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .eslintrc.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: "Static code analysis workflow (CodeQL)" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
permissions: | ||
actions: read | ||
checks: read | ||
contents: read | ||
deployments: read | ||
issues: read | ||
discussions: read | ||
packages: read | ||
pages: read | ||
pull-requests: read | ||
repository-projects: read | ||
security-events: write | ||
statuses: read | ||
|
||
jobs: | ||
CodeQL-Build: | ||
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@46a6823b81f2d7c67ddf123851eea88365bc8a67 # v2.13.5 | ||
with: | ||
languages: javascript | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@46a6823b81f2d7c67ddf123851eea88365bc8a67 # v2.13.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.