Skip to content

Bump @types/node from 20.2.3 to 20.2.5 in /app (#142) #386

Bump @types/node from 20.2.3 to 20.2.5 in /app (#142)

Bump @types/node from 20.2.3 to 20.2.5 in /app (#142) #386

Workflow file for this run

name: TypeScript
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
REACT_APP_API_URL: https://api.example
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: latest
cache: 'npm'
cache-dependency-path: ./app/package-lock.json
- run: npm ci
- run: npm test
- run: npm run build