chore: migrate spellchecking from github action to npm task #1848
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@v5 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| cache: yarn | |
| - run: yarn install | |
| - run: yarn lint | |
| types: | |
| name: Types | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| cache: yarn | |
| - run: yarn install | |
| - run: yarn test:types | |
| spellcheck: | |
| name: Spell Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| cache: yarn | |
| - run: yarn install | |
| - run: yarn spellcheck | |
| 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@v5 | |
| - run: npm install -g [email protected] --force | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| 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@v5 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ env.NODE }} | |
| cache: yarn | |
| - run: yarn install | |
| - run: yarn playwright install --with-deps chromium | |
| - run: yarn test:regression |