Skip to content

New open source client api bruno (#97) #416

New open source client api bruno (#97)

New open source client api bruno (#97) #416

Workflow file for this run

# To pin this file to a specific version of the action, run:
# npx pin-github-action main.yml
name: Build Technology Radar
on:
pull_request:
types: [ opened, synchronize, reopened, closed ]
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # pin@master
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # pin@v4
with:
node-version: "lts/*"
cache: "npm"
- run: npm ci
- run: PUBLIC_URL=/technology-radar npm run build:static
- run: if [ -n "$(git status --porcelain)" ]; then echo 'workspace is dirty after rebuilding' ; git status ; git diff ; exit 1 ; fi
- name: Setup Pages
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # pin@v5
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # pin@v3
with:
name: github-pages
path: build
deploy:
# runs only when pr is merged into main or when a push is done on main
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
needs: build
environment:
name: techradar
url: https://pagopa.github.io/technology-radar/index.html
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # pin@v4