Skip to content

Commit 41f8729

Browse files
committed
Merge branch 'main' into bump-packages
2 parents 4307c00 + 27e867e commit 41f8729

File tree

13 files changed

+2295
-1152
lines changed

13 files changed

+2295
-1152
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# This CI Workflow was deployed and configured by WarpWing and Nate.
2+
name: CI/CD (20.18.3)
3+
4+
on:
5+
push:
6+
pull_request:
7+
workflow_dispatch:
8+
9+
env:
10+
NODE_VERSION: "20.18.3"
11+
12+
jobs:
13+
es-lint:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Git checkout
17+
uses: actions/checkout@v4
18+
19+
- name: Use Node.js ${{ env.NODE_VERSION }}
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: ${{ env.NODE_VERSION }}
23+
24+
- name: Install node dependencies
25+
run: npm i
26+
27+
- name: es-lint
28+
run: npm run lint
29+
30+
prettier:
31+
runs-on: ubuntu-latest
32+
steps:
33+
- name: Git checkout
34+
uses: actions/checkout@v4
35+
36+
- name: Use Node.js ${{ env.NODE_VERSION }}
37+
uses: actions/setup-node@v4
38+
with:
39+
node-version: ${{ env.NODE_VERSION }}
40+
41+
- name: Install node dependencies
42+
run: npm i
43+
44+
- name: Prettier
45+
run: npm run prettier
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
# This CI Workflow was deployed and configured by WarpWing and Nate.
2-
name: CI/CD
2+
name: CI/CD (latest)
33

44
on:
55
push:
66
pull_request:
77
workflow_dispatch:
88

99
env:
10-
NODE_VERSION: "16.x"
10+
NODE_VERSION: "latest"
1111

1212
jobs:
1313
es-lint:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Git checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818

1919
- name: Use Node.js ${{ env.NODE_VERSION }}
20-
uses: actions/setup-node@v2
20+
uses: actions/setup-node@v4
2121
with:
2222
node-version: ${{ env.NODE_VERSION }}
2323

@@ -31,10 +31,10 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Git checkout
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v4
3535

3636
- name: Use Node.js ${{ env.NODE_VERSION }}
37-
uses: actions/setup-node@v2
37+
uses: actions/setup-node@v4
3838
with:
3939
node-version: ${{ env.NODE_VERSION }}
4040

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ that went into it. Thank you!
2323
## NodeJS
2424

2525
- Git
26-
- NodeJS >= 16.9
26+
- NodeJS >= 20.18.3
2727
- A Minecraft account
2828

2929
### Setup Guide for NodeJS
@@ -143,13 +143,6 @@ The `blacklist` option determines whether the blacklist feature is enabled. By d
143143

144144
The `blacklisted` option is an array of user usernames or UUIDs, blacklisted played won't be able to use fragBot. By default, this is set to an empty array.
145145

146-
### Guild
147-
148-
The guild section contains options related to the Hypixel guild.
149-
150-
The `guildExp` option is a number value required for the `!gexp` command, which is used to check how much more guild experience a user needs to collect to meet the
151-
guild's requirements. By default, this is set to 50,000.
152-
153146
### API
154147

155148
The API options include information about APIs which are being used, the only values which needs to be changed are `hypixelAPIkey` and `imgurAPIkey`.

config.example.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
"blacklist": false,
1717
"blacklisted": []
1818
},
19-
"guild": {
20-
"guildExp": 50000
21-
},
2219
"API": {
2320
"hypixelAPIkey": "HYPIXEL_API_KEY",
2421
"imgurAPIkey": "IMGUR_API_KEY"

0 commit comments

Comments
 (0)