mirror of
https://github.com/threeal/cmake-action.git
synced 2025-04-23 12:01:20 +00:00
Some checks failed
Build / Build Package (push) Failing after 7s
Check / Check Package (push) Failing after 2s
Test / Test Package (push) Failing after 2s
Test / Test Action (ubuntu-22.04) (push) Failing after 33s
Test / Test Action With Specified Directories (push) Failing after 36s
Test / Test Action Without Run Build (push) Failing after 32s
Test / Test Action With Additional Options (push) Failing after 2s
Test / Test Action With Custom Generator (push) Failing after 2s
Test / Test Action (windows-2022) (push) Has been cancelled
Test / Test Action (macos-14) (push) Has been cancelled
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.2.1...v4.2.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
624 B
YAML
31 lines
624 B
YAML
name: Check
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
jobs:
|
|
check-package:
|
|
name: Check Package
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout Project
|
|
uses: actions/checkout@v4.2.2
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4.0.4
|
|
with:
|
|
node-version-file: .nvmrc
|
|
|
|
- name: Setup Yarn
|
|
uses: threeal/setup-yarn-action@v2.0.0
|
|
|
|
- name: Check Formatting
|
|
run: yarn format
|
|
|
|
- name: Check Diff
|
|
run: git diff && git diff-index --quiet --exit-code HEAD
|
|
|
|
- name: Check Lint
|
|
run: yarn lint
|