Skip to content

Update blacklisted props that can be passed to native HTML elements using the transferProps principle #111

Update blacklisted props that can be passed to native HTML elements using the transferProps principle

Update blacklisted props that can be passed to native HTML elements using the transferProps principle #111

Workflow file for this run

name: Build
on: [ pull_request ]
jobs:
build:
name: Build distribution CSS and JS
runs-on: ubuntu-20.04
strategy:
matrix:
node: [ 18, 20 ]
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Print Node.js and npm version
run: node --version && npm --version
- name: Install
run: npm ci
- name: Build
run: npm run build