chore(deps): update dependency changelogithub to ^13.16.1 (#773) #5150
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint-check: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: ./.github/actions/setup-nix | |
| - run: nix develop --command pnpm lint | |
| - run: nix develop --command pnpm typecheck | |
| test: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: ./.github/actions/setup-nix | |
| - name: Create default Claude directories for tests | |
| run: | | |
| mkdir -p $HOME/.claude/projects | |
| mkdir -p $HOME/.config/claude/projects | |
| - run: nix develop --command pnpm run test | |
| npm-publish-dry-run-and-upload-pkg-pr-now: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: ./.github/actions/setup-nix | |
| - run: nix develop --command pnpm pkg-pr-new publish --pnpm './apps/*' | |
| spell-check: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: ./.github/actions/setup-nix | |
| - run: nix develop --command typos --config ./typos.toml | |
| schema-check: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: ./.github/actions/setup-nix | |
| - name: Generate schema files | |
| run: nix develop --command pnpm run generate:schema | |
| working-directory: apps/ccusage | |
| - name: Check if schema files are up-to-date | |
| run: | | |
| if git diff --exit-code apps/ccusage/config-schema.json docs/public/config-schema.json; then | |
| echo "✅ Schema files are up-to-date" | |
| else | |
| echo "❌ Schema files are not up-to-date. Please run 'pnpm run generate:schema' and commit the changes." | |
| echo "" | |
| echo "Changed files:" | |
| git diff --name-only apps/ccusage/config-schema.json docs/public/config-schema.json | |
| echo "" | |
| echo "Diff:" | |
| git diff apps/ccusage/config-schema.json docs/public/config-schema.json | |
| exit 1 | |
| fi |