Skip to content

migrate: Re-factored index and tag pages and components to use `webc:… #34

migrate: Re-factored index and tag pages and components to use `webc:…

migrate: Re-factored index and tag pages and components to use `webc:… #34

Workflow file for this run

# Workflow to build and deploy a static site to GitHub Pages.
# https://github.com/actions/starter-workflows/blob/main/ci/node.js.yml
name: Node.js CI
on:
push:
branches: [ main, master, eleventy ]
pull_request:
branches: [ main, master ]
workflow_dispatch:
# 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:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x ]
# node-version: [12.x, 14.x, 16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm test --if-present
# Ignore non-zero exit codes for 'outdated' and 'audit'.
- run: npm outdated || true
- run: npm audit || true
- name: Setup Pages
uses: actions/configure-pages@v2
#- name: Upload artifact
# uses: actions/upload-pages-artifact@v1
# with:
# Upload one directory.
# path: './_site'
#- name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v1
# End.