mirror of
https://github.com/sorrycc/awesome-javascript.git
synced 2026-01-24 04:08:01 -08:00
Compare commits
3 Commits
2f1890c2b1
...
8158823d6a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8158823d6a | ||
|
|
aaee06c9fe | ||
|
|
ff4dac0459 |
19
.github/workflows/validator.yml
vendored
19
.github/workflows/validator.yml
vendored
@@ -11,7 +11,7 @@ on:
|
|||||||
- synchronize
|
- synchronize
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RUBY_VERSION: '2.6'
|
RUBY_VERSION: '3.2'
|
||||||
|
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
@@ -22,30 +22,32 @@ jobs:
|
|||||||
name: Validator
|
name: Validator
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- id: checkout
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- id: setup-ruby
|
- id: setup-ruby
|
||||||
name: Setup Ruby
|
name: Setup Ruby
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: ${{ env.RUBY_VERSION }}
|
ruby-version: ${{ env.RUBY_VERSION }}
|
||||||
|
bundler-cache: true
|
||||||
- id: checkout
|
|
||||||
name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- id: install-gem
|
- id: install-gem
|
||||||
name: Install gem
|
name: Install gem
|
||||||
run: |
|
run: |
|
||||||
gem install awesome_bot
|
gem install awesome_bot --no-document
|
||||||
|
|
||||||
- id: validate
|
- id: validate
|
||||||
name: Validate
|
name: Validate
|
||||||
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
awesome_bot README.md --request-delay 0.5 --allow-timeout --allow-redirect
|
awesome_bot README.md --request-delay 0.5 --allow-timeout --allow-redirect
|
||||||
|
|
||||||
- id: upload-artifact
|
- id: upload-artifact
|
||||||
name: Upload artifact
|
name: Upload artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
if: failure()
|
if: ${{ failure() }}
|
||||||
with:
|
with:
|
||||||
if-no-files-found: warn
|
if-no-files-found: warn
|
||||||
name: ab-results
|
name: ab-results
|
||||||
@@ -53,4 +55,3 @@ jobs:
|
|||||||
ab-results-README.md.json
|
ab-results-README.md.json
|
||||||
ab-results-README.md-filtered.json
|
ab-results-README.md-filtered.json
|
||||||
ab-results-README.md-markdown-table.json
|
ab-results-README.md-markdown-table.json
|
||||||
|
|
||||||
|
|||||||
@@ -590,6 +590,7 @@ There're also some great commercial libraries, like [amchart](https://www.amchar
|
|||||||
## RegExp
|
## RegExp
|
||||||
* [RegEx101](https://regex101.com/#javascript) - Online regex tester and debugger for JavaScript. Also supports Python, PHP and PCRE.
|
* [RegEx101](https://regex101.com/#javascript) - Online regex tester and debugger for JavaScript. Also supports Python, PHP and PCRE.
|
||||||
* [RegExr](https://regexr.com/) - HTML/JS based tool for creating, testing, and learning about Regular Expressions.
|
* [RegExr](https://regexr.com/) - HTML/JS based tool for creating, testing, and learning about Regular Expressions.
|
||||||
|
* [Regulex](https://jex.im/regulex/) - JavaScript Regular Expression Parser & Visualizer.
|
||||||
|
|
||||||
## Voice Command
|
## Voice Command
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user