This repository was archived by the owner on May 13, 2026. It is now read-only.
Update dependency @tailwindcss/forms to v0.5.11 #876
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: TypeScript Packages - Unit | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - staging | |
| paths: | |
| - "packages/**" | |
| - "!packages/nameguard-python/**" | |
| pull_request: | |
| branches: | |
| - main | |
| - staging | |
| paths: | |
| - "packages/**" | |
| - "!packages/nameguard-python/**" | |
| env: | |
| PROVIDER_URI_MAINNET: ${{ secrets.PROVIDER_URI_MAINNET }} | |
| PROVIDER_URI_SEPOLIA: ${{ secrets.PROVIDER_URI_SEPOLIA }} | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| package: | |
| - "ens-utils" | |
| - "nameguard-sdk" | |
| - "nameguard-js" | |
| - "nameguard-react" | |
| - "namekit-react" | |
| - "nameai-sdk" | |
| name: Test ${{ matrix.package }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: "pnpm" | |
| - name: Get pnpm store directory | |
| id: pnpm-cache | |
| shell: bash | |
| run: | | |
| echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
| - uses: actions/cache@v4 | |
| name: Setup pnpm cache | |
| with: | |
| path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm-store- | |
| - name: Install npm dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build | |
| run: pnpm build | |
| - name: Test ${{ matrix.package }} | |
| run: pnpm --filter ./packages/${{ matrix.package }} test |