Skip to content

fix(react-image): change Load to return loaded HTMLImageElement #226

fix(react-image): change Load to return loaded HTMLImageElement

fix(react-image): change Load to return loaded HTMLImageElement #226

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Check quality
runs-on: ubuntu-latest
strategy:
matrix:
command: ["lint", "lint:pub", "test", "type:check"]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.6.10
- uses: actions/setup-node@v3
with:
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
node-version-file: ".nvmrc"
- if: matrix.command == 'test'
run: pnpx playwright install
- run: pnpm install --frozen-lockfile
- run: pnpm prepack
- run: pnpm ${{ matrix.command }}