Skip to content

Fixes additional material daniel #106

Fixes additional material daniel

Fixes additional material daniel #106

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
name: verify buildable state
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: setup nodejs
uses: actions/setup-node@v3
with:
node-version: 18
- name: install dependencies
run: npm ci
- name: check formatting
run: npm run prettier:check
- name: build website
run: npm run build