Skip to content

Bump @types/react from 17.0.85 to 19.1.2 in /packages/ui #1440

Bump @types/react from 17.0.85 to 19.1.2 in /packages/ui

Bump @types/react from 17.0.85 to 19.1.2 in /packages/ui #1440

Workflow file for this run

name: Testing
on: [pull_request]
jobs:
pdfme-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
- run: npm run lint
- run: npm run test
env:
CI: true
playground-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies and build project
run: |
npm install
npm run build
- name: Run playground tests
run: |
cd playground
npm install
npm run lint
npm run build
npm run test
env:
CI: true