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
1717To run unit tests with GitHub Actions, add the following lines to you workflows test yml file:
1818```
1919- name: Setup Java
20- uses: actions/setup-java@v2
20+ uses: actions/setup-java@v3
2121 with:
2222 distribution: 'temurin'
2323 java-version: '11'
2424
2525- 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
3027
3128- 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 &
3330```
3431## Usage
3532Extend your unit tests from \PHPFUI\HTMLUnitTester\Extensions
You can’t perform that action at this time.
0 commit comments