Skip to content

fix(app.tsx): fix hook reference #57

fix(app.tsx): fix hook reference

fix(app.tsx): fix hook reference #57

Workflow file for this run

name: Build Node.js
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: my-react-ts-app/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: ./my-react-ts-app
- name: Build
run: npm run build --if-present
working-directory: ./my-react-ts-app