Skip to content

Updated MIA version #52

Updated MIA version

Updated MIA version #52

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build, lint and typecheck site
run: npm run build
- name: Check code formatting
run: npx prettier --check .