Skip to content

Add mise task discovery support #38

Add mise task discovery support

Add mise task discovery support #38

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: Format
run: make format
- name: Lint
run: make lint
- name: Spell check
run: make spellcheck
- name: Build
run: make build
- name: Test
run: make test EXCLUDE_CI=true
- name: Package
run: make package
website:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
working-directory: website
- name: Build site
run: npx @11ty/eleventy
working-directory: website
- name: Install Playwright
run: npx playwright install --with-deps chromium
working-directory: website
- name: Run website tests
run: npx playwright test
working-directory: website