Skip to content

Add Firefox notes for Document.getSelection() #1319

Add Firefox notes for Document.getSelection()

Add Firefox notes for Document.getSelection() #1319

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
merge_group:
permissions:
contents: read
env:
FORCE_COLOR: 3
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: ".nvmrc"
cache: npm
package-manager-cache: true
- run: npm ci
- run: npx eslint .
- run: npx prettier --check .
- run: npx tsc --noEmit
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: ".nvmrc"
cache: npm
package-manager-cache: true
- run: npm ci
- run: npm run lint -- --fail-on-warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: ".nvmrc"
cache: npm
package-manager-cache: true
- run: npm ci
- run: npm run unittest