Skip to content

chore: release v1.19.13 #1815

chore: release v1.19.13

chore: release v1.19.13 #1815

Workflow file for this run

name: build-test
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
- '.github/**'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
- '.github/**'
pull_request_review:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4
- run: pnpm i --frozen-lockfile
- run: pnpm exec playwright install --with-deps
- run: pnpm build
- run: pnpm run lint:github
- run: pnpm run format:check
- run: pnpm run test
env:
CI: true