mirror of
https://github.com/svg/svgo.git
synced 2026-01-27 07:02:06 +03:00
81 lines
1.7 KiB
YAML
81 lines
1.7 KiB
YAML
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
|
|
- 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
|
|
- 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
|
|
- 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
|
|
- 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
|