update deploy #2
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: Deploy to GitHub Pages #nom de notre process | ||
on: | ||
push: | ||
branches: | ||
- main #des que cette branche recoit un “push” la CI/CD tournera son job | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v4 #il sert a creer notre config pour github pages | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} #les workflow permissions qu’on a activé | ||
publish_dir: ./src #fichiers qu’on va publier sur le serveur | ||
- name: Install necessary packages | ||
run: npm install | ||
- name: Run Lighthouse CI | ||
uses: treosh/lighthouse-ci-action@v11 | ||
with: | ||
urls: | | ||
https://lucashimpens.io/jftl-lighthouse-workshop/ | ||
configPath: './lighthouserc.js' | ||
temporaryPublicStorage: true # upload lighthouse report to the temporary storage | ||