[ci] Fix ignored errors in agdb_ci #1467 #576
Workflow file for this run
This file contains 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: agdb_api_typescript | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
diff: | |
runs-on: ubuntu-latest | |
outputs: | |
diff: ${{ steps.diff.outputs.diff }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- id: diff | |
shell: bash | |
run: | | |
if [[ "$(git diff origin/main --name-only -- agdb_api/typescript/ .github/workflows/agdb_api_typescript.yaml)" != "" ]]; then (echo "diff=true" >> $GITHUB_OUTPUT); fi | |
agdb_api_typescript_analyse: | |
runs-on: ubuntu-latest | |
needs: diff | |
if: needs.diff.outputs.diff == 'true' | |
defaults: | |
run: | |
working-directory: agdb_api/typescript | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm ci | |
- run: npm run lint:check | |
agdb_api_typescript_coverage: | |
runs-on: ubuntu-latest | |
needs: diff | |
if: needs.diff.outputs.diff == 'true' | |
defaults: | |
run: | |
working-directory: agdb_api/typescript | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- run: npm ci | |
- run: npm run test | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: coverage | |
path: agdb_api/typescript/coverage/ | |
retention-days: 30 | |
agdb_api_typescript_format: | |
runs-on: ubuntu-latest | |
needs: diff | |
if: needs.diff.outputs.diff == 'true' | |
defaults: | |
run: | |
working-directory: agdb_api/typescript | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm ci | |
- run: npm run format:check |