Bump react-router from 3.2.6 to 6.23.1 #1357
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 Pandora Branches | |
on: | |
# Run this workflow on creation (or sync to source branch) of a new pull request | |
pull_request: | |
jobs: | |
build: | |
name: Build branch | |
uses: zooniverse/ci-cd/.github/workflows/npm_build.yaml@main | |
with: | |
commit_id: ${{ github.sha }} | |
node_version: 'lts/iron' | |
output: 'dist' | |
script: '_build-staging' | |
slack_notifiaction: | |
name: Send Slack notification | |
uses: zooniverse/ci-cd/.github/workflows/slack_notification.yaml@main | |
needs: build | |
if: always() | |
with: | |
commit_id: ${{ github.sha }} | |
job_name: Build branch / build | |
status: ${{ needs.build.result }} | |
title: 'Pandora branch build complete' | |
title_link: 'https://pandora.zooniverse.org' | |
secrets: | |
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }} |