Skip to content

[pull] main from commontoolsinc:main #63

[pull] main from commontoolsinc:main

[pull] main from commontoolsinc:main #63

Workflow file for this run

name: UI Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache-dependency-path: typescript/packages/pnpm-lock.yaml
- name: Install dependencies
run: |
cd typescript/packages
pnpm install
- name: UI Tests
run: |
cd typescript/packages/common-iframe-sandbox
pnpm test