feat: add various new awesome links to the list #67
This file contains hidden or 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
| name: linker | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| link: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Link Checker | |
| uses: lycheeverse/lychee-action@v2.6.1 | |
| with: | |
| args: > | |
| --header "Accept: text/html" | |
| --header "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36" | |
| --accept 200,301,302,307,308 | |
| --max-redirects 10 | |
| . | |
| fail: false |