Bump @babel/eslint-parser from 7.22.11 to 7.22.15 (#537) #230
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: Deploy PFE-Lab Staging | |
on: | |
# Run this workflow on creation (or sync to source branch) of a new pull request | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Build staging | |
uses: zooniverse/ci-cd/.github/workflows/npm_build.yaml@main | |
with: | |
commit_id: ${{ github.sha }} | |
node_version: 'lts/hydrogen' | |
output: 'dist' | |
script: '_build-staging' | |
deploy: | |
name: Deploy staging | |
uses: zooniverse/ci-cd/.github/workflows/deploy_static.yaml@main | |
needs: build | |
with: | |
source: 'dist' | |
target: 'preview.zooniverse.org/pfe-lab/master' | |
secrets: | |
creds: ${{ secrets.AZURE_STATIC_SITES }} | |
slack_notification: | |
name: Send Slack notification | |
uses: zooniverse/ci-cd/.github/workflows/slack_notification.yaml@main | |
needs: deploy | |
if: always() | |
with: | |
commit_id: ${{ github.sha }} | |
job_name: Build staging / build | |
status: ${{ needs.deploy.result }} | |
title: 'PFE-Lab Staging deploy complete' | |
title_link: 'https://master.lab-preview.zooniverse.org' | |
secrets: | |
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }} |