Widen accepted ref types for React 19 ref types #31
Workflow file for this run
This file contains 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: Build | |
on: [push, pull_request] | |
jobs: | |
release: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
uses: pnpm/[email protected] | |
with: { run_install: true } | |
- name: Run build | |
run: pnpm run build | |
- name: Lint | |
run: pnpm run format -l | |
- name: Check Git Status | |
run: git status --porcelain |