Skip to content

build: update Node version for semantic-release (#100) #150

build: update Node version for semantic-release (#100)

build: update Node version for semantic-release (#100) #150

Workflow file for this run

name: Quality
on:
pull_request:
push:
branches:
- 'canary'
- 'main'
jobs:
commitlint:
name: 'Commitlint'
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install
uses: ./.github/composite-actions/install
- name: Run commitlint check
run: pnpm commitlint -f ${{ github.event.pull_request.base.sha }}
eslint:
name: 'ESLint'
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run ESLint check
run: pnpm eslint-check
prettier:
name: 'Prettier'
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Install
uses: ./.github/composite-actions/install
- name: Run Prettier check
run: pnpm prettier-check