Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit e2edfdf

Browse files
committed
Add job names to actions config
1 parent e85c439 commit e2edfdf

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

.github/workflows/release-on-vtag.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
- 'v*'
66
jobs:
77
build:
8+
name: Create Release
89
runs-on: ubuntu-latest
910
steps:
1011
- uses: actions/checkout@v2

.github/workflows/run-spec-on-push.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ name: build
22
on: [push]
33
jobs:
44
build:
5+
name: Run Specifications
56
runs-on: ubuntu-latest
67
steps:
7-
- uses: actions/checkout@v2
8-
- uses: actions/setup-node@v2
9-
- run: npm install
10-
- run: npm test
8+
- uses: actions/checkout@v2
9+
- uses: actions/setup-node@v2
10+
- run: npm install
11+
- run: npm test

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ _Gulp plugin to validate HTML using the W3C Markup Validation Service_
66
[![License:MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/center-key/gulp-w3c-html-validator/blob/main/LICENSE.txt)
77
[![npm](https://img.shields.io/npm/v/gulp-w3c-html-validator.svg)](https://www.npmjs.com/package/gulp-w3c-html-validator)
88
[![Vulnerabilities](https://snyk.io/test/github/center-key/gulp-w3c-html-validator/badge.svg)](https://snyk.io/test/github/center-key/gulp-w3c-html-validator)
9-
[![Build](https://github.com/center-key/gulp-w3c-html-validator/workflows/build/badge.svg)](https://github.com/center-key/gulp-w3c-html-validator/actions?query=workflow%3Abuild)
9+
[![Build](https://github.com/center-key/gulp-w3c-html-validator/workflows/build/badge.svg)](https://github.com/center-key/gulp-w3c-html-validator/actions/workflows/run-spec-on-push.yaml)
1010

11-
This Gulp plugin is a wrapper for [w3c-html-validator](https://github.com/center-key/w3c-html-validator) (_"A package for testing HTML files or URLs against the W3C validator"_)
11+
This Gulp plugin is a wrapper for [w3c-html-validator](https://github.com/center-key/w3c-html-validator) (_"A package for testing HTML files or URLs against the W3C validator"_). 
12+
Note that it's usually simpler and cleaner to use the underlying library directly from
13+
your **package.json** file than using this plugin.
1214

1315
<img src=https://raw.githubusercontent.com/center-key/gulp-w3c-html-validator/main/screenshot.png alt=screenshot>
1416

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,22 +82,22 @@
8282
"plugin-error": "~1.0",
8383
"through2": "~4.0",
8484
"vinyl": "~2.2",
85-
"w3c-html-validator": "~0.8"
85+
"w3c-html-validator": "~1.0"
8686
},
8787
"devDependencies": {
8888
"@types/node": "~17.0",
8989
"@types/through2": "~2.0",
90-
"@typescript-eslint/eslint-plugin": "~5.8",
91-
"@typescript-eslint/parser": "~5.8",
90+
"@typescript-eslint/eslint-plugin": "~5.12",
91+
"@typescript-eslint/parser": "~5.12",
9292
"add-dist-header": "~0.1",
93-
"assert-deep-strict-equal": "~0.0",
93+
"assert-deep-strict-equal": "~1.0",
9494
"cpy-cli": "~3.1",
95-
"eslint": "~8.6",
95+
"eslint": "~8.9",
9696
"jshint": "~2.13",
97-
"mocha": "~9.1",
97+
"mocha": "~9.2",
9898
"npm-run-all2": "~5.0",
9999
"rimraf": "~3.0",
100-
"sinon": "~12.0",
100+
"sinon": "~13.0",
101101
"typescript": "~4.5"
102102
}
103103
}

0 commit comments

Comments
 (0)