Skip to content

refactor(commit): refactor git commands, use Intl for formatting #81

refactor(commit): refactor git commands, use Intl for formatting

refactor(commit): refactor git commands, use Intl for formatting #81

Workflow file for this run

name: Build
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Install Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24"
- name: Install pnpm
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
with:
run_install: true
cache: true
- name: Run linters
run: pnpm run lint:all
- name: Run build
run: pnpm run build