docs: add imaNNeo/docs.flchart.dev
to domains.json (#315)
#673
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: website | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '14' | |
- name: NPM Install | |
run: yarn | |
- name: Check Linting | |
run: yarn run check:linting | |
- name: Check Formatting | |
run: yarn run check:formatting | |
# TODO: refactor to tsc on individual packages | |
# - name: Check TS Compiles | |
# run: yarn run check:typescript | |
# - name: Check Spelling & Grammar | |
# run: yarn run check:spelling | |
# TODO: tests need fixing | |
# test: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - uses: actions/setup-node@v2-beta | |
# with: | |
# node-version: '14' | |
# - name: NPM Install | |
# run: yarn | |
# - name: Jest Tests | |
# run: yarn run test |