mirror of
https://github.com/threeal/cmake-action.git
synced 2026-02-27 15:30:50 +00:00
Some checks failed
Build / Build Action (push) Has been cancelled
Test / Test Action (macos-14) (push) Has been cancelled
Test / Test Action (ubuntu-24.04) (push) Has been cancelled
Test / Test Action (windows-2022) (push) Has been cancelled
Test / Test Action With Specified Directories (push) Has been cancelled
Test / Test Action Without Run Build (push) Has been cancelled
Test / Test Action With Additional Options (push) Has been cancelled
Test / Test Action With Custom Generator (push) Has been cancelled
Signed-off-by: Alfi Maulana <alfi.maulana.f@gmail.com>
20 lines
357 B
YAML
20 lines
357 B
YAML
pre-commit:
|
|
piped: true
|
|
fail_on_changes: always
|
|
fail_on_changes_diff: true
|
|
jobs:
|
|
- name: install dependencies
|
|
run: pnpm install
|
|
|
|
- name: check types
|
|
run: pnpm tsc
|
|
|
|
- name: fix formatting
|
|
run: pnpm prettier --write .
|
|
|
|
- name: fix lint
|
|
run: pnpm eslint --fix
|
|
|
|
- name: build action
|
|
run: pnpm rollup -c
|