Skip to content

Commit

Permalink
feat: add website and github pages for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblack committed Feb 13, 2024
1 parent b6d47ac commit dc4b55a
Show file tree
Hide file tree
Showing 25 changed files with 834 additions and 71 deletions.
8 changes: 8 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ const config = {
'import/no-unresolved': 'off',
},
overrides: [
{
files: ['**/*.ts', '**/*.tsx'],
rules: {
'filenames/match-regex': 'off',
'import/no-namespace': 'off',
'@typescript-eslint/no-namespace': 'off',
},
},
{
files: ['*.test.ts'],
rules: {
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: deploy
on:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- uses: actions/upload-pages-artifact@v3
with:
path: ./website/out

deploy:
needs: build
runs-on: ubuntu-latest

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ custome-elements.json

# TypeScript
*.tsbuildinfo

# Next.js
.next
Loading

0 comments on commit dc4b55a

Please sign in to comment.