Skip to content

Modernize the extension's code #1177

Modernize the extension's code

Modernize the extension's code #1177

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
node-version:
- 24
- 25
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: Install Playwright browsers
run: |
npx playwright install --with-deps chromium
- name: Lint, build and test
run: |
npm run build
npm run validate:firefox
npm t
build-windows:
runs-on: windows-latest
strategy:
matrix:
node-version:
- 24
- 25
steps:
- uses: actions/checkout@v4
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: Lint, build and test
run: |
npm run build
npm t