Skip to content

Use secondary focus ring color; add margin #13

Use secondary focus ring color; add margin

Use secondary focus ring color; add margin #13

Workflow file for this run

name: Portfolio Build and Deploy
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- 'README.md'
- '.gitignore'
- '.editorconfig'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
name: Build and Deploy
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: NPM Setup
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: NPM install
run: npm ci
- name: NPM build
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "dist/"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4