Fix rate limiting (#29)
Reviewed-on: #29 Co-authored-by: chris b <blue.iron1752@chrisb.xyz> Co-committed-by: chris b <blue.iron1752@chrisb.xyz>
This commit is contained in:
parent
96a3347969
commit
2ea5eb6805
|
@ -15,8 +15,9 @@ jobs:
|
|||
with:
|
||||
node-version: "lts/*"
|
||||
cache: "npm"
|
||||
token: ${{ secrets.GH_NODE_TOKEN }}
|
||||
|
||||
- run: npm i --no-savec --no-fund --no-audit --no-progress
|
||||
- run: npm i --no-save --no-fund --no-audit --no-progress
|
||||
|
||||
- run: npm run prettier:check
|
||||
|
||||
|
@ -30,8 +31,9 @@ jobs:
|
|||
with:
|
||||
node-version: "lts/*"
|
||||
cache: "npm"
|
||||
token: ${{ secrets.GH_NODE_TOKEN }}
|
||||
|
||||
- run: npm i --no-savec --no-fund --no-audit --no-progress
|
||||
- run: npm i --no-save --no-fund --no-audit --no-progress
|
||||
|
||||
- run: npm run lint:js
|
||||
|
||||
|
@ -45,7 +47,8 @@ jobs:
|
|||
with:
|
||||
node-version: "lts/*"
|
||||
cache: "npm"
|
||||
token: ${{ secrets.GH_NODE_TOKEN }}
|
||||
|
||||
- run: npm i --no-savec --no-fund --no-audit --no-progress
|
||||
- run: npm i --no-save --no-fund --no-audit --no-progress
|
||||
|
||||
- run: npm run typescript
|
||||
|
|
|
@ -25,6 +25,7 @@ jobs:
|
|||
node-version: "lts/*"
|
||||
cache: "npm"
|
||||
registry-url: "https://registry.npmjs.org"
|
||||
token: ${{ secrets.GH_NODE_TOKEN }}
|
||||
|
||||
- run: npm i --no-save --no-fund --no-audit --no-progress
|
||||
|
||||
|
|
Loading…
Reference in New Issue