chore(deps-dev): bump prettier in the dev-dependencies group #156
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: π Release | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
name: Continuous Integration | |
uses: ./.github/workflows/__shared-ci.yml | |
release: | |
needs: ci | |
runs-on: 'ubuntu-latest' | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: βοΈ Setup Pages | |
id: pages | |
uses: actions/configure-pages@v5 | |
with: | |
static_site_generator: gatsby | |
- name: ποΈ Build | |
uses: escemi-tech/[email protected] | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./public | |
- name: π Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |
- name: π Check the site is up | |
uses: jtalk/url-health-check-action@v4 | |
with: | |
url: ${{ steps.deployment.outputs.page_url }} | |
- uses: actions/checkout@v4 | |
- name: π¦ Audit URLs using Lighthouse | |
id: lighthouse-ci-audit | |
uses: treosh/[email protected] | |
with: | |
urls: ${{ steps.deployment.outputs.page_url }} | |
temporaryPublicStorage: true | |
- uses: ./.github/actions/lighthouse-ci-badge | |
with: | |
links: ${{ steps.lighthouse-ci-audit.outputs.links }} | |
manifest: ${{ steps.lighthouse-ci-audit.outputs.manifest }} |