Skip to content

Commit

Permalink
ci: Enable CI for v8.x branch (#18047)
Browse files Browse the repository at this point in the history
* ci: Enable CI for `v8.x` branch

* upgrade eslint-plugin-n, fix lint problem
  • Loading branch information
mdjermanovic committed Jan 29, 2024
1 parent 8e8e9f8 commit 42c0aef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: CI
on:
push:
branches: [main]
branches: [main, v8.x]
pull_request:
branches: [main]
branches: [main, v8.x]

permissions:
contents: read
Expand Down
1 change: 0 additions & 1 deletion docs/.eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@ module.exports = function(eleventyConfig) {
* @returns {string} The base 64 encoded equivalent of the text.
*/
function encodeToBase64(text) {
/* global btoa -- It does exist, and is what the playground uses. */
return btoa(unescape(encodeURIComponent(text)));
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"eslint-plugin-eslint-plugin": "^5.2.1",
"eslint-plugin-internal-rules": "file:tools/internal-rules",
"eslint-plugin-jsdoc": "^46.2.5",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-n": "^16.6.0",
"eslint-plugin-unicorn": "^49.0.0",
"eslint-release": "^3.2.0",
"eslump": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@eslint/js": "^8.42.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^46.5.1",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-n": "^16.6.0",
"eslint-plugin-unicorn": "^49.0.0"
},
"keywords": [
Expand Down

0 comments on commit 42c0aef

Please sign in to comment.