File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -17,19 +17,16 @@ java -Xss1024k -cp vnu.jar nu.validator.servlet.Main 8888
17
17
To run unit tests with GitHub Actions, add the following lines to you workflows test yml file:
18
18
```
19
19
- name: Setup Java
20
- uses: actions/setup-java@v2
20
+ uses: actions/setup-java@v3
21
21
with:
22
22
distribution: 'temurin'
23
23
java-version: '11'
24
24
25
25
- name: Download vnu checker
26
- run: wget https://github.com/validator/validator/releases/download/20.6.30/vnu.jar_20.6.30.zip
27
-
28
- - name: Unzip jar file
29
- run: unzip vnu.jar_20.6.30.zip
26
+ run: wget https://github.com/validator/validator/releases/download/latest/vnu.jar
30
27
31
28
- name: Run Nu Html Checker (v.Nu)
32
- run: java -cp ./dist/ vnu.jar -Xss1024k -Dnu.validator.servlet.bind-address=127.0.0.1 nu.validator.servlet.Main 8888 &
29
+ run: java -cp vnu.jar -Xss1024k -Dnu.validator.servlet.bind-address=127.0.0.1 nu.validator.servlet.Main 8888 &
33
30
```
34
31
## Usage
35
32
Extend your unit tests from \PHPFUI\HTMLUnitTester\Extensions
You can’t perform that action at this time.
0 commit comments