mirror of
https://github.com/sorrycc/awesome-javascript.git
synced 2026-01-24 04:08:01 -08:00
Compare commits
1 Commits
7f1308d633
...
9c11ca76ca
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9c11ca76ca |
19
.github/workflows/validator.yml
vendored
19
.github/workflows/validator.yml
vendored
@@ -11,7 +11,7 @@ on:
|
||||
- synchronize
|
||||
|
||||
env:
|
||||
RUBY_VERSION: '3.2'
|
||||
RUBY_VERSION: '2.6'
|
||||
|
||||
defaults:
|
||||
run:
|
||||
@@ -22,32 +22,30 @@ jobs:
|
||||
name: Validator
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- id: checkout
|
||||
name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- id: setup-ruby
|
||||
name: Setup Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ env.RUBY_VERSION }}
|
||||
bundler-cache: true
|
||||
|
||||
- id: checkout
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- id: install-gem
|
||||
name: Install gem
|
||||
run: |
|
||||
gem install awesome_bot --no-document
|
||||
gem install awesome_bot
|
||||
|
||||
- id: validate
|
||||
name: Validate
|
||||
continue-on-error: true
|
||||
run: |
|
||||
awesome_bot README.md --request-delay 0.5 --allow-timeout --allow-redirect
|
||||
|
||||
- id: upload-artifact
|
||||
name: Upload artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
if: ${{ failure() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
if: failure()
|
||||
with:
|
||||
if-no-files-found: warn
|
||||
name: ab-results
|
||||
@@ -55,3 +53,4 @@ jobs:
|
||||
ab-results-README.md.json
|
||||
ab-results-README.md-filtered.json
|
||||
ab-results-README.md-markdown-table.json
|
||||
|
||||
|
||||
@@ -591,7 +591,6 @@ There're also some great commercial libraries, like [amchart](https://www.amchar
|
||||
## RegExp
|
||||
* [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.
|
||||
* [Regulex](https://jex.im/regulex/) - JavaScript Regular Expression Parser & Visualizer.
|
||||
|
||||
## Voice Command
|
||||
|
||||
|
||||
Reference in New Issue
Block a user