Skip to content

fix: Add "ALT" to CSS content properties in mobile theme (#9) #26

fix: Add "ALT" to CSS content properties in mobile theme (#9)

fix: Add "ALT" to CSS content properties in mobile theme (#9) #26

Workflow file for this run

# https://github.com/actions/starter-workflows/blob/main/ci/node.js.yml
name: Deploy
on:
push:
branches: [revive]
# Was: branches: [main]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
env:
NODE_VERSION: 24
SEARCH_API_KEY: ${{ secrets.SEARCH_API_KEY }}
SEARCH_ID: ${{ secrets.SEARCH_ID }}
ABSOLUTE_URL: https://nfreear.github.io/diveintoaccessibility
_THEME: mobile
# _THEME: original
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
name: Build & Deploy
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
check-latest: true
# cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run dry-run
- run: npm test --if-present
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
# Upload one directory.
path: _site/
retention-days: 30
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
# End.