Skip to content

Commit ffa1ff5

Browse files
committed
Testing action updates
1 parent 58fbda9 commit ffa1ff5

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.github/workflows/action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,7 @@ jobs:
1111
- uses: actions/checkout@master
1212
- uses: gaurav-nelson/github-action-markdown-link-check@v1
1313
with:
14+
config-file: 'mlc_config.json'
1415
use-quiet-mode: 'yes'
15-
use-verbose-mode: 'yes'
16+
use-verbose-mode: 'yes'
17+

.github/workflows/mlc_config.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"aliveStatusCodes": [
3+
0,
4+
200,
5+
429
6+
],
7+
"fallbackRetryDelay": "30s",
8+
"retryCount": 2,
9+
"timeout": "5s"
10+
}

redux-architecture.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,7 @@
191191
https://blog.shakacode.com/a-year-of-development-with-redux-part-i-a5791e124a7d
192192
https://blog.shakacode.com/a-year-of-development-with-redux-part-ii-3035ff0b1781
193193
Some quick tips for working with Redux, structuring data, and encapsulation of components
194-
195-
- **Avoiding False Cause**
196-
http://duplo.tech/avoiding-false-cause/
197-
Some high-level general thoughts on cargo-culting, dogma, and best practices, followed by some specific examples of problematic Redux code (unclear reducer state shape, managing "editing" mode data, applying arbitrary value updates)
198-
194+
199195
- **Isn't our code just the BEST**
200196
https://medium.com/bumpers/isnt-our-code-just-the-best-f028a78f33a9
201197
A quirkily-written look at how a dev team rewrote their project using React and Redux, including examples of project structure, component usage, and data normalization

0 commit comments

Comments
 (0)