Create website

This commit is contained in:
Daniel Lautzenheiser 2022-12-05 09:27:21 -05:00 committed by GitHub
parent e9177b86e4
commit fd27a8400d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

48
.github/workflows/website vendored Normal file
View File

@ -0,0 +1,48 @@
name: Build
on:
workflow_dispatch:
push:
branches: [ "main" ]
paths:
- website/**
pull_request:
branches: [ "main" ]
paths:
- website/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: yarn
cache-dependency-path: website/yarn.lock
node-version: 16
- name: Install
working-directory: ./website
run: |
yarn install --frozen-lockfile
- name: Lint
working-directory: ./website
run: |
yarn lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3