Skip to content

✨ add controlled input to use it in forms #537

✨ add controlled input to use it in forms

✨ add controlled input to use it in forms #537

Workflow file for this run

name: CI
on: [push]
env:
NODE_OPTIONS: "--max_old_space_size=4096"
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["14.x", "16.x", "18.x"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use pnpm
uses: pnpm/[email protected]
with:
version: ${{ matrix.node == '14.x' && '6' || 'latest' }}
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: Install Dependencies
run: pnpm i
- name: Lint
run: pnpm lint
- name: Build Packages
run: pnpm p:build
- name: Build Examples ${{ matrix.node }}
if: matrix.node != '18.x'
run: pnpm turbo run build --filter='./examples/*' --filter=!gatsby-typescript
- name: Build Examples ${{ matrix.node }}
if: matrix.node == '18.x'
run: pnpm turbo run build --filter='./examples/*'