Skip to content

✨ Add SimpleLogin #152

✨ Add SimpleLogin

✨ Add SimpleLogin #152

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/actions-markdownlint@main
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