fix: Arc mark does not stack for quantitative
definitions when different fields are used for theta
and radius
[draft]
#7796
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: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Node | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
node-version: 20 | |
- name: Install Node dependencies | |
run: yarn --frozen-lockfile | |
- name: Tests | |
run: yarn vitest run test/ | |
- name: Example tests | |
run: yarn vitest run examples/ | |
- name: Build | |
run: yarn build | |
runtime-lint-coverage: | |
name: Runtime, Linting, and Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
node-version: 20 | |
- name: Install Node dependencies | |
run: yarn --frozen-lockfile | |
- name: Copy Data | |
run: yarn data | |
- name: Set up playwright | |
run: yarn playwright install chromium | |
- name: Build | |
run: yarn build:only | |
- name: Typechecks | |
run: yarn tsc | |
- name: Lint | |
run: yarn lint | |
- name: Runtime tests | |
run: yarn test:runtime --browser.headless | |
- name: Test coverage | |
run: yarn test:cover | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
test-cli: | |
name: CLI | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-13, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
node-version: 20 | |
- name: Install Node dependencies | |
run: yarn --frozen-lockfile | |
- name: Build | |
run: yarn build:only | |
- name: Compile Vega | |
run: | | |
bin/vl2vg examples/specs/bar.vl.json -p > bar.vg.json | |
cat bar.vg.json | |
- name: Diff compiled Vega | |
run: diff bar.vg.json examples/compiled/bar.vg.json | |
- name: Compile PNG, SVG, PDF | |
run: | | |
bin/vl2png examples/specs/bar.vl.json > bar.png | |
bin/vl2svg examples/specs/bar.vl.json > bar.svg | |
bin/vl2pdf examples/specs/bar.vl.json > bar.pdf | |
- name: Compile from stdin (Unix) | |
if: matrix.os != 'windows-latest' | |
run: | | |
bin/vl2vg -p < examples/specs/bar.vl.json > bar-stdin.vg.json | |
bin/vl2png < examples/specs/bar.vl.json > bar-stdin.png | |
bin/vl2svg < examples/specs/bar.vl.json > bar-stdin.svg | |
bin/vl2pdf < examples/specs/bar.vl.json > bar-stdin.pdf |