Skip to content

build(deps-dev): bump cypress from 12.7.0 to 12.11.0 #86

build(deps-dev): bump cypress from 12.7.0 to 12.11.0

build(deps-dev): bump cypress from 12.7.0 to 12.11.0 #86

Workflow file for this run

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: actions/setup-node@v3
with:
node-version: 16
- name: 📥 Download deps
uses: bahmutov/npm-install@v1
- name: 🧪 Test
run: |
yarn lint
yarn test --silent --coverage
echo "### Test Results 🧪 " >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
yarn c8 report >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
- name: ⚙️ Build
run: yarn 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