Skip to content

fix(image): fallback-src prop and lazy loading dosen't work (#4485) #1

fix(image): fallback-src prop and lazy loading dosen't work (#4485)

fix(image): fallback-src prop and lazy loading dosen't work (#4485) #1

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main, feat, docs ]
pull_request:
branches: [ main, feat, docs ]
jobs:
build:
environment: test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.15]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: pnpm install
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test:cov
- name: Code coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}