Thanks to visit codestin.com
Credit goes to github.com

Skip to content

feat: domRenderer - render events + lazyload images #135

feat: domRenderer - render events + lazyload images

feat: domRenderer - render events + lazyload images #135

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Lint
# Will run the step even if build step failed, to give feedback
if: success() || failure()
run: pnpm lint