Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,11 @@
"github/unescaped-html-literal": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"import/named": "off",
"eslint-comments/no-use": "off",
"github/no-inner-html": "off"
},
"env": {
"mocha": true
},
"globals": {
"assert": true,
"remoteForm": true
"github/no-inner-html": "off",
"i18n-text/no-en": "off",
"filenames/match-regex": "off"
}
}
]
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24
cache: 'npm'
- run: npm install
- run: npx playwright install chromium
- run: npm run build --if-present
- run: npm test
env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci
- run: npx playwright install chromium
- run: npm test
- run: npm version ${TAG_NAME} --git-tag-version=false
env:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist/
node_modules/
test/__screenshots__
Loading