From fd27a8400d3d635f248137b9156f8f9b3ade807c Mon Sep 17 00:00:00 2001 From: Daniel Lautzenheiser Date: Mon, 5 Dec 2022 09:27:21 -0500 Subject: [PATCH] Create website --- .github/workflows/website | 48 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/website diff --git a/.github/workflows/website b/.github/workflows/website new file mode 100644 index 00000000..75d635b7 --- /dev/null +++ b/.github/workflows/website @@ -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