Skip to content

Fix validation of YouTubeVideoBlock #1685

Fix validation of YouTubeVideoBlock

Fix validation of YouTubeVideoBlock #1685

Workflow file for this run

name: Test
on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- main
- next
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- run: echo "${{ github.actor }}"
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- run: |
git config user.name github-actions
git config user.email github-actions@github.com
- uses: pnpm/action-setup@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
cache: "pnpm" # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies
- run: pnpm install --frozen-lockfile
- name: Copy schema files
run: pnpm run copy-schema-files
- name: Build
run: pnpm run build:packages
- name: Test
run: pnpm run test
- name: Upload test results
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-results
path: packages/**/junit.xml