Skip to content

Migrate to astro v4 #20

Migrate to astro v4

Migrate to astro v4 #20

Workflow file for this run

name: CI
on:
push:
branches: [main]
merge_group:
pull_request:
branches: [main]
# Automatically cancel in-progress actions on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
cancel-in-progress: true
env:
NODE_OPTIONS: "--max_old_space_size=4096"
jobs:
astrocheck:
name: Check for type issues with astro check
runs-on: ubuntu-latest
env:
FORCE_COLOR: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Tools & Dependencies
uses: ./.github/actions/install
- name: Run Check
run: pnpm run check
eslint:
name: Check for code issues with ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Tools & Dependencies
uses: ./.github/actions/install
- name: Run Check
run: pnpm run lint:eslint
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Tools & Dependencies
uses: ./.github/actions/install
- name: βš™οΈ Build
run: pnpm run build
env:
FORMSPREE: ${{ secrets.FORMSPREE }}
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: πŸ§ͺ Run Tests
run: pnpm run test
env:
FORMSPREE: ${{ secrets.FORMSPREE }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
linkcheck:
name: Check Links
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restore lychee cache
id: restore-cache
uses: actions/cache/restore@v3
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-
- name: Run Link Check
uses: lycheeverse/lychee-action@v1.8.0
with:
args: "--base . --cache --max-cache-age 1d ."
output: /tmp/lychee-report.md
fail: true
- name: Save lychee cache
uses: actions/cache/save@v3
if: always()
with:
path: .lycheecache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
- name: PR comment with file
uses: thollander/actions-comment-pull-request@v2
with:
filePath: /tmp/lychee-report.md
reactions: eyes
comment_tag: lychee-report