Skip to content

Commit 555c642

Browse files
committed
Correct workflow
1 parent 2d66399 commit 555c642

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: wget https://github.com/validator/validator/releases/download/latest/vnu.jar
4242

4343
- name: Run Nu Html Checker (v.Nu)
44-
run: java -cp ./dist/vnu.jar -Xss1024k -Dnu.validator.servlet.bind-address=127.0.0.1 nu.validator.servlet.Main 8888 &
44+
run: java -cp vnu.jar -Xss1024k -Dnu.validator.servlet.bind-address=127.0.0.1 nu.validator.servlet.Main 8888 &
4545

4646
- name: Install dependencies
4747
run: |

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ composer require phpfui/html-unit-tester
1212
## Configuration
1313
It is recommended you run [https://github.com/validator/validator](https://github.com/validator/validator) locally. Install [Java](https://www.java.com/ES/download/) and download the [.jar file](https://github.com/validator/validator/releases). Run with the following command:
1414
```
15-
java -Xss1024k -cp vnu.jar nu.validator.servlet.Main 8888
15+
java -Xss1024k -Dnu.validator.servlet.bind-address=127.0.0.1 -cp .\vnu.jar nu.validator.servlet.Main 8888
1616
```
1717
To run unit tests with GitHub Actions, add the following lines to you workflows test yml file:
1818
```

0 commit comments

Comments
 (0)