build(deps): bump http-proxy-middleware from 2.0.6 to 2.0.7 #272
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: Pull Request | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
preview-website: | |
runs-on: ubuntu-latest | |
environment: | |
name: preview | |
url: https://site-interslavic-pr-${{ github.event.pull_request.number }}.surge.sh | |
env: | |
GITHUB_PR_NUMBER: ${{ github.event.pull_request.number }} | |
DEPLOYMENT_URL: https://site-interslavic-pr-${{ github.event.pull_request.number }}.surge.sh | |
steps: | |
- name: Start deployment | |
uses: bobheadxi/deployments@v1 | |
id: deployment | |
with: | |
step: start | |
token: ${{ secrets.GITHUB_TOKEN }} | |
env: preview | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 # To retrieve the preceding commit. | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v41 | |
with: | |
separator: '\n' | |
- name: Write changed files to log | |
run: | | |
echo "${{ steps.changed-files.outputs.all_changed_files }}" > git-changes.log | |
cat git-changes.log | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: NPM install | |
uses: bahmutov/npm-install@v1 | |
with: | |
useLockFile: false | |
- name: Build a preview | |
run: npm run build | |
- name: Deploy to Surge | |
run: npx surge ./build ${{ env.DEPLOYMENT_URL }} | |
env: | |
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }} | |
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} | |
- name: Update deployment status | |
uses: bobheadxi/deployments@v1 | |
if: always() | |
with: | |
step: finish | |
token: ${{ secrets.GITHUB_TOKEN }} | |
status: ${{ job.status }} | |
env: ${{ steps.deployment.outputs.env }} | |
deployment_id: ${{ steps.deployment.outputs.deployment_id }} |