Skip to content

dev/gabriel

dev/gabriel #85

Workflow file for this run

name: Code Quality
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: It must install the dependencies
uses: ./.github/actions/prepare/install
with:
install-node: "true"
install-dotnet: "true"
- name: The build should work
run: pnpm run -w build;
- name: Require to pass static code check
run: |
git stash -u;
pnpm run -w code-static:check;
if [ `git stash list | wc -l` -gt 0 ]; then
git stash pop;
fi
- name: Require updated integrations
run: |
if [ `git status --porcelain=1 | wc -l` -ne 0 ]; then
git status --porcelain=1;
exit 1;
fi
- name: Require changesets
run: changeset status --since=development