Skip to content

build(deps): bump @rive-app/react-canvas-lite from 4.13.8 to 4.14.5 #647

build(deps): bump @rive-app/react-canvas-lite from 4.13.8 to 4.14.5

build(deps): bump @rive-app/react-canvas-lite from 4.13.8 to 4.14.5 #647

Workflow file for this run

name: Tests
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
cache: "npm"
- name: Install dependencies
run: npm ci
- name: format check
run: npm run prettier:check
- name: type check
run: npm run type:check
- name: lint
run: npm run lint -- --max-warnings 0
e2e:
needs: static
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test:e2e
env:
CI: true
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 10