chore(deps): update typescript-eslint monorepo to v8.20.0 #1352
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- 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@v4 | |
- 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 | |
- name: Install Tools & Dependencies | |
uses: ./.github/actions/install | |
- name: βοΈ Build | |
run: pnpm run build | |
env: | |
CONTACT_FORM: ${{ secrets.CONTACT_FORM }} | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
- name: π§ͺ Run Tests | |
run: pnpm run test | |
env: | |
CONTACT_FORM: ${{ secrets.CONTACT_FORM }} | |
- uses: actions/upload-artifact@v4 | |
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@v4 | |
# - 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/[email protected] | |
# with: | |
# args: "--base ./dist --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 |