Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
8 changes: 6 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, 24]
Comment thread
dgreif marked this conversation as resolved.
Outdated
steps:
- uses: actions/checkout@v4
- name: Use Node.js
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 22
node-version: ${{ matrix.node-version }}
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
Loading