add Electron 32 compat data mapping #3786
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push, pull_request] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ^22.1 | |
cache: npm | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- run: npm ci | |
- run: pip install codespell | |
- run: npx run-s lint-raw codespell | |
karma: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ^22.1 | |
cache: npm | |
- run: npm ci | |
- run: npx run-s bundle test-unit-karma | |
bun: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ^22.1 | |
cache: npm | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- run: npm ci | |
- run: npx run-s bundle test-unit-bun | |
promises-and-observables: | |
strategy: | |
matrix: | |
node: | |
- 18.12 | |
- 20.9 | |
- 21 | |
- ^22.1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- run: npm ci | |
- run: npx run-s test-promises test-observables | |
tests: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
node: | |
- 18.12 | |
- 20.9 | |
- 21 | |
- ^22.1 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- run: npm ci | |
- run: npx run-s bundle test-unit-node test-entries test-compat-data test-compat-tools test-builder |