Skip to content

Add vercel speed insights #33

Add vercel speed insights

Add vercel speed insights #33

Workflow file for this run

name: Github Pages Astro CI
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
pages: write
id-token: write
jobs:
lint-format:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install NPM dependencies
run: npm ci
- name: Lint and format
run: npm run lint:ci
build:
needs: lint-format
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
- name: Install, build, and upload your site
uses: withastro/action@v1
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
if: github.ref == 'refs/heads/main'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1