Skip to content

ci(release): removes git plugin from semantic release #6

ci(release): removes git plugin from semantic release

ci(release): removes git plugin from semantic release #6

Workflow file for this run

name: CI
on:
pull_request:
branches:
- release/v*
- main
- alpha
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["18.x", "20.x"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Script Runner
uses: ./.github/composite-workflows/pnpm-script-base
with:
node-version: ${{ matrix.node-version }}
- run: pnpm run lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["18.x", "20.x"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Script Runner
uses: ./.github/composite-workflows/pnpm-script-base
with:
node-version: ${{ matrix.node-version }}
- run: pnpm test
compile:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["18.x", "20.x"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Script Runner
uses: ./.github/composite-workflows/pnpm-script-base
with:
node-version: ${{ matrix.node-version }}
- run: pnpm run compile