Bump express from 4.18.2 to 4.21.2 #282
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
# This file was auto-generated by the Firebase CLI | |
# https://github.com/firebase/firebase-tools | |
name: "[PR] Deploy to Firebase Hosting on push to PR (isolated test environment)" | |
on: | |
pull_request: | |
branches: | |
- "**" | |
- "!dependabot/**" | |
- "!dependabot/npm_and_yarn/**" | |
jobs: | |
log_not_running: | |
runs-on: ubuntu-latest | |
name: "Doesn't trigger on dependabot PRs" | |
if: ${{ startsWith(github.head_ref, 'dependabot/') }} | |
steps: | |
- name: "Doesn't trigger on dependabot PRs" | |
run: exit | |
build_and_preview: | |
runs-on: ubuntu-latest | |
if: ${{ !startsWith(github.head_ref, 'dependabot/') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "yarn" | |
- run: yarn install --immutable --immutable-cache | |
- run: yarn build | |
env: | |
CONTENTFUL_SPACE_ID: "${{ secrets.CONTENTFUL_SPACE_ID }}" | |
CONTENTFUL_DELIVERY_TOKEN: "${{ secrets.CONTENTFUL_DELIVERY_TOKEN }}" | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_FRIENDS_OF_FOXLEY_PROD }}" | |
projectId: friends-of-foxley-prod |