Skip to content

Commit 42c0aef

Browse files
authored
ci: Enable CI for v8.x branch (#18047)
* ci: Enable CI for `v8.x` branch * upgrade eslint-plugin-n, fix lint problem
1 parent 8e8e9f8 commit 42c0aef

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: CI
22
on:
33
push:
4-
branches: [main]
4+
branches: [main, v8.x]
55
pull_request:
6-
branches: [main]
6+
branches: [main, v8.x]
77

88
permissions:
99
contents: read

docs/.eleventy.js

-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ module.exports = function(eleventyConfig) {
189189
* @returns {string} The base 64 encoded equivalent of the text.
190190
*/
191191
function encodeToBase64(text) {
192-
/* global btoa -- It does exist, and is what the playground uses. */
193192
return btoa(unescape(encodeURIComponent(text)));
194193
}
195194

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"eslint-plugin-eslint-plugin": "^5.2.1",
123123
"eslint-plugin-internal-rules": "file:tools/internal-rules",
124124
"eslint-plugin-jsdoc": "^46.2.5",
125-
"eslint-plugin-n": "^16.4.0",
125+
"eslint-plugin-n": "^16.6.0",
126126
"eslint-plugin-unicorn": "^49.0.0",
127127
"eslint-release": "^3.2.0",
128128
"eslump": "^3.0.0",

packages/eslint-config-eslint/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"@eslint/js": "^8.42.0",
3232
"eslint-plugin-eslint-comments": "^3.2.0",
3333
"eslint-plugin-jsdoc": "^46.5.1",
34-
"eslint-plugin-n": "^16.4.0",
34+
"eslint-plugin-n": "^16.6.0",
3535
"eslint-plugin-unicorn": "^49.0.0"
3636
},
3737
"keywords": [

0 commit comments

Comments
 (0)