Updated plugin descriptions and added logic to set preset to the plugin description. #1832
Workflow file for this run
This file contains hidden or 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 | |
| env: | |
| FORCE_COLOR: 2 | |
| NODE: 20 | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| cache: yarn | |
| - run: yarn install | |
| - run: yarn lint | |
| - run: yarn test:types | |
| types: | |
| name: Types | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| cache: yarn | |
| - run: yarn install | |
| - run: yarn test:types | |
| test: | |
| name: ${{ matrix.os }} Node.js ${{ matrix.node-version }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: | |
| - 22 | |
| - 20 | |
| - 18 | |
| - 16 | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: npm install -g [email protected] --force | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: yarn | |
| - run: yarn install | |
| - run: yarn playwright install --with-deps chromium | |
| - run: yarn test | |
| - run: yarn test:bundles | |
| regression: | |
| name: Test regressions | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| needs: | |
| - lint | |
| - test | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| cache: yarn | |
| - run: yarn install | |
| - run: yarn playwright install --with-deps chromium | |
| - run: yarn test:regression |