Skip to content

Commit

Permalink
chore: add ci for docs-v2 (#18231)
Browse files Browse the repository at this point in the history
  • Loading branch information
ad-m committed Feb 2, 2022
1 parent 9b91a0d commit f212f88
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/superset-docs-v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Docs v2

on:
push:
paths:
- "docs-v2/**"
- .github/workflows/superset-docs-v2.yml
pull_request:
paths:
- "docs-v2/**"
- .github/workflows/superset-docs-v2.yml

jobs:
build-deploy:
name: Build & Deploy
runs-on: ubuntu-20.04
defaults:
run:
working-directory: docs-v2
steps:
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
uses: actions/checkout@v2
with:
persist-credentials: false
submodules: recursive
- name: yarn install
run: |
yarn install --immutable --immutable-cache --check-cache
- name: yarn build
run: |
yarn build

0 comments on commit f212f88

Please sign in to comment.