55 lines
884 B
YAML
Raw Normal View History

2022-12-06 09:45:35 -05:00
name: Docs
2022-12-05 09:27:21 -05:00
on:
workflow_dispatch:
push:
branches: ["main"]
2022-12-05 09:27:21 -05:00
paths:
- docs/**
2022-12-05 09:27:21 -05:00
pull_request:
branches: ["main"]
2022-12-05 09:27:21 -05:00
paths:
- docs/**
2022-12-05 09:27:21 -05:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2022-12-05 09:27:21 -05:00
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: yarn
cache-dependency-path: docs/yarn.lock
node-version: 16
- name: Install
working-directory: ./docs
run: |
yarn install --frozen-lockfile
- name: Lint
working-directory: ./docs
run: |
yarn lint
2022-12-05 09:27:21 -05:00
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
integration_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3