Skip to content

fix(platform-web-pixi): apply tint to graphics objects in PixiRenderi… #203

fix(platform-web-pixi): apply tint to graphics objects in PixiRenderi…

fix(platform-web-pixi): apply tint to graphics objects in PixiRenderi… #203

Workflow file for this run

name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install lcov
run: sudo apt-get install lcov
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build engine
run: bun run build
- name: Install Playwright browsers
run: bunx playwright install --with-deps chromium
- name: Run browser tests
run: bun run test:browser
- name: Upload Playwright test results
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Run linting and type checking
run: bun run lint
- name: Run tests with coverage
run: bun run coverage
- name: Build demo
run: bun run demo:build
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: ./packages/core/lcov.info