build(deps-dev): bump @testing-library/jest-dom from 5.16.5 to 5.17.0… #128
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: Build and Deploy for Github Pages | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "src/**" | |
- "public/**" | |
- ".github/workflows/**" | |
- "package.json" | |
- "vite.config.ts" | |
- "astro.config.mjs" | |
- "yarn.lock" | |
branches: | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.6.0 | |
with: | |
access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup node | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: "1.0.0" | |
- name: 📥 Download deps | |
run: | | |
bun install | |
- name: 🧪 Test | |
run: | | |
bun lint | |
echo "### Test Coverage 🧪 " >> $GITHUB_STEP_SUMMARY | |
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY | |
bun run test --silent --coverage >> $GITHUB_STEP_SUMMARY | |
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY | |
- name: ⚙️ Build | |
run: bun run build | |
- name: ⚙️ Setup Pages | |
if: success() | |
uses: actions/configure-pages@v1 | |
- name: 📁 Upload artifact | |
if: success() | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
# Upload entire repository | |
path: "./dist" | |
deploy: | |
# Add a dependency to the build job | |
needs: build | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
# Deploy to the github-pages environment | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
# Specify runner + deployment step | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚀 Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |