feat: home chart tooltip event markers #1012
Workflow file for this run
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
| on: | |
| push: | |
| branches: | |
| - "main" | |
| paths: | |
| - "**.json" | |
| - "**.js" | |
| - "**.jsx" | |
| - "**.mjs" | |
| - "**.ts" | |
| - "**.tsx" | |
| - "**.lockb" | |
| - ".github/workflows/test.yml" | |
| pull_request: | |
| paths: | |
| - "**.json" | |
| - "**.js" | |
| - "**.jsx" | |
| - "**.mjs" | |
| - "**.ts" | |
| - "**.tsx" | |
| - "**.lockb" | |
| - ".github/workflows/test.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| name: test | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| name: setup bun | |
| with: | |
| bun-version: 1.0.22 | |
| - name: install dependencies | |
| run: bun install | |
| - name: check formatting | |
| run: bun run fmt:check | |
| - name: stub generated | |
| run: | | |
| mkdir -p site/src/generated/killed-in-gaza | |
| bun run chart-viz | |
| bun run gen-summaries | |
| bun run gen-killed-derived | |
| bun run gen-stories | |
| echo '{"pageCount": 0}' > site/src/generated/killed-in-gaza/page-info.json | |
| - name: run typechecks | |
| run: bun run types |