Skip to content

Upgrade actions

Upgrade actions #1693

Workflow file for this run

name: Build PR Preview
on:
pull_request:
branches: [main]
types:
- opened
- reopened
- synchronize
workflow_dispatch:
permissions:
contents: read
pages: write
pull-requests: write
id-token: write
checks: write
concurrency: preview-${{ github.ref }}
jobs:
build-preview:
runs-on: ubuntu-latest
steps:
- name: Install native dependencies for canvas
run: |
sudo apt-get update
sudo apt-get install -y \
libcairo2-dev libjpeg-dev libpango1.0-dev libgif-dev build-essential g++ \
libpixman-1-dev pkg-config
- name: Checkout Main Branch 🛎️
uses: actions/checkout@v7
with:
ref: main
path: main
- name: Checkout PR Branch 🛎️
uses: actions/checkout@v7
with:
path: pr-branch
- name: Setup Node.js for building main branch
uses: actions/setup-node@v7
with:
node-version-file: main/package.json
- name: Install and Build Main Branch 🔧
run: |
npm ci --include=dev
npm run build
npm run style
npm run shields
cp src/configs/config.osmus.js src/config.js
working-directory: main
- name: Setup Node.js for building pr branch
uses: actions/setup-node@v7
with:
node-version-file: pr-branch/package.json
- name: Install and Build PR Branch 🔧
# TODO: when we move shieldlib to its own repo, move shieldlib docs CI also
run: |
npm ci --include=dev
npm run build
npm run style
npm run shields
cp src/configs/config.osmus.js src/config.js
mkdir -p dist/shield-docs
cp -r shieldlib/docs/* dist/shield-docs
mkdir -p ../pr
working-directory: pr-branch
- name: Save PR attributes
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
PR_SHA: ${{ github.event.pull_request.head.sha }}
run: |
echo $PR_NUMBER > pr/pr_number
echo $PR_SHA > pr/pr_sha
echo "Saved PR# ${{ github.event.pull_request.number }}, SHA# ${{ github.event.pull_request.head.sha }} for upload"
- name: Generate icon grid previews for changed icons
id: icon-changes
run: |
npm exec tsx scripts/icon_changes ../main/icons icons dist/icon-grids
if [ -f dist/icon-grids/icon-changes.md ]; then
echo "Icon changes detected and grids generated"
else
echo "No icon changes detected"
fi
if [ -f dist/icon-grids/icon-changes.md ]; then
mv dist/icon-grids/icon-changes.md ../pr/icon-changes.md
fi
working-directory: pr-branch
- name: Add fully qualified URLs to icon-changes.md for GitHub checks
run: |
if [ -f pr/icon-changes.md ]; then
# Copy the file and replace relative paths with absolute URLs
sed -i "s|icon-grids/|https://preview.americanamap.org/pr/${{ github.event.pull_request.number }}/icon-grids/|g" pr/icon-changes.md
cat pr/icon-changes.md
echo "Icon changes markdown created with absolute URLs"
else
echo "No icon change file found in this PR." > pr/icon-changes.md
fi
- name: Copy PR preview directory with all artifacts
run: |
cp -prR dist ..
working-directory: pr-branch
- name: Capture main branch usage statistics
id: main-stats
run: |
MAIN_STATS=$(npx tsx ../pr-branch/scripts/stats -j -d ../main/dist)
echo "MAIN_STATS<<EOF" >> $GITHUB_ENV
echo -e "$MAIN_STATS" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
working-directory: main
- name: Setup Node.js for running main branch map server
uses: actions/setup-node@v7
with:
node-version-file: main/package.json
- name: Start main branch map server
id: main-start-server
run: |
npm start &
until nc -z localhost 1776; do sleep 1; done
working-directory: main
- name: Setup Node.js for capturing main branch sample clips with pr branch scripts
uses: actions/setup-node@v7
with:
node-version-file: pr-branch/package.json
- name: Capture main branch sample clips
# Run PR branch scripts against server running from main branch
id: main-samples
run: |
npm run generate_samples
mv samples ../samples-main
working-directory: pr-branch
- name: Stop main branch map server
id: main-stop-server
run: kill $(lsof -t -i:1776) 2>/dev/null || echo "No process found listening on port 1776."
working-directory: main
- name: Capture PR branch sample clips
id: pr-samples
run: |
npm start &
until nc -z localhost 1776; do sleep 1; done
npm run generate_samples
kill $(lsof -t -i:1776) 2>/dev/null || echo "No process found listening on port 1776."
mv samples ../samples-pr
working-directory: pr-branch
- name: Capture PR branch usage statistics
id: pr-stats
run: |
PR_STATS=$(npx tsx scripts/stats -j -d dist)
echo "PR_STATS<<EOF" >> $GITHUB_ENV
echo -e "$PR_STATS" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
working-directory: pr-branch
- name: Compare Stats
id: compare-stats
run: |
echo '${{ env.MAIN_STATS }}'
echo '${{ env.PR_STATS }}'
npm exec tsx scripts/stats_compare '${{ env.MAIN_STATS }}' '${{ env.PR_STATS }}' > ../pr/stats-difference.md
working-directory: pr-branch
- name: Generate map diff sample clips
id: map-diff-samples
run: |
npm exec tsx scripts/folder_diff ../samples-main ../samples-pr https://preview.americanamap.org/pr/${{ github.event.pull_request.number }}/ ${{ github.event.pull_request.head.sha }}
mv pr_preview-extra.md ../pr/
cat ../pr/pr_preview-extra.md
mv samples-diff ../dist/
working-directory: pr-branch
- name: Upload Build artifacts
uses: actions/upload-artifact@v7
with:
name: americana
path: dist/
- name: Upload PR artifacts
uses: actions/upload-artifact@v7
with:
name: pr_ci_artifacts
path: pr/