Skip to content

feat(dialog): use native HTML dialog element #1704

feat(dialog): use native HTML dialog element

feat(dialog): use native HTML dialog element #1704

Workflow file for this run

name: Validate PRs
on:
pull_request:
types:
- opened
- reopened
- synchronize
- edited
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'npm'
- run: npm i semantic-release @changesets/read --prefer-offline
- uses: actions/github-script@v7
with:
script: |
const { validate } = await import('${{ github.workspace }}/scripts/validate-prs.js');
await validate({ context });