Remove remaining items in the unified plugin used for legacy config compatibility and simplify plugin export #7670
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: Check | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
types: [opened, edited, reopened, synchronize] | |
branches: | |
- "**" | |
env: | |
NODE_OPTIONS: --max_old_space_size=10240 | |
jobs: | |
check: | |
runs-on: ubuntu-24.04-arm | |
steps: | |
- name: Setup node@24 | |
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 | |
with: | |
node-version: 24 | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: Checkout repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Install front-end dependencies | |
run: pnpm install | |
- name: Build front-end assets | |
run: pnpm run build | |
- name: Check | |
run: pnpm run lint |