Skip to content

Make tests working and passing again #93

Make tests working and passing again

Make tests working and passing again #93

Workflow file for this run

---
name: Test Website Deployment
on:
pull_request:
branches:
- main
jobs:
lint:
name: Lint Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint docs
uses: articulate/[email protected]
with:
version: 0.32.2
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: website/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build