Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f4cc6ee
update to new keycloak auth bundle
willbreitkreutz Jul 22, 2025
44468a5
add login.gov logo for button
willbreitkreutz Jul 22, 2025
28d856a
update bundle creator config for auth bundle
willbreitkreutz Jul 22, 2025
dd7e6c9
add login.gov button to profile menu
willbreitkreutz Jul 22, 2025
8a60003
1.5.0
willbreitkreutz Jul 22, 2025
4d986fc
bump version of create-keycloak-auth-bundle
willbreitkreutz Jul 22, 2025
64b8a07
Upgrade observable plot package
jvanaalsburg Feb 24, 2025
89da7ab
Upgrade d3 package
jvanaalsburg Feb 24, 2025
53440fc
Display date and file count in heatmap cell tooltip
jvanaalsburg Feb 24, 2025
84661bc
Add product availability modal
jvanaalsburg Feb 24, 2025
e1bb5ff
Display product availability model on heatmap cell click
jvanaalsburg Feb 24, 2025
4593b93
Upgrade date-fns package and install UTC extension
jvanaalsburg Mar 7, 2025
9c9b1ef
Pass product to availability modal
jvanaalsburg Mar 7, 2025
dc26f07
Display list of file times and availability
jvanaalsburg Mar 7, 2025
42b36f6
Add pagination controls for fetching prev/next day
jvanaalsburg Mar 7, 2025
9d3b984
Add toggle to only display missing files
jvanaalsburg Mar 7, 2025
43c7024
Display total number of available and missing files
jvanaalsburg Mar 7, 2025
d922acd
convert date
Sep 3, 2025
38cef01
Merge pull request #177 from USACE/product-availability-update
oskarhurst Sep 3, 2025
60a0306
Update to fix lint warning and add pr build test
oskarhurst Sep 5, 2025
b34e112
Merge pull request #180 from USACE/product-availability-update
oskarhurst Sep 5, 2025
0c0701c
Date filter (#178)
oskarhurst Sep 8, 2025
aad82b0
Product search map update (#179)
oskarhurst Oct 27, 2025
27c1dc1
add Latest Forecast row (#189)
oskarhurst Nov 7, 2025
c953b77
Custom region map update (#188)
oskarhurst Nov 7, 2025
c39ba31
Add Primary Sources tab (#190)
oskarhurst Nov 20, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/pr-build-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: PR Build Check

# Run this workflow on pull requests to validate the build
on:
pull_request:
branches: [cwbi-dev]
types: [opened, synchronize, reopened]

jobs:
build-check:
name: Build React App
runs-on: ubuntu-latest

steps:
# Step 1: Clone the repository
- name: Git clone the repository
uses: actions/checkout@v3

# Step 2: Set up Node.js (React app requires Node.js)
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 'node' # Use the latest version of Node.js

# Step 3: Install dependencies
- name: Install Dependencies
run: npm install

# Step 4: Build the React app for production
- name: Build React App
run: npm run build
env:
REACT_APP_AUTH_HOST: https://identityc-test.cwbi.us/auth
REACT_APP_AUTH_REDIRECT_URL: https://cumulus.dev.cwbi.us
REACT_APP_CUMULUS_API_URL: https://cumulus.dev.cwbi.us/api
REACT_APP_ISDEVELOPMENT: true
Loading