Skip to content

Commit 7e8b744

Browse files
committed
test workflow
1 parent d2a1eea commit 7e8b744

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Node.js CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
node-version: [14.x]
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- run: npm install
21+
- run: npm start
22+
env:
23+
CI: true

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"express-port":8080,
44
"host":"localhost",
55
"realServer":{
6-
"ip":"localhost",
6+
"ip":"krainamc.pl",
77
"port":25565,
88
"version":"1.16.3"
99
}

0 commit comments

Comments
 (0)