mirror of
https://github.com/apache/superset.git
synced 2026-04-10 11:55:24 +00:00
This should fix a broken CI error where apt fails to update: E: The repository 'https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_18.04 Release' no longer has a Release file.
30 lines
516 B
YAML
30 lines
516 B
YAML
name: Docs
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "docs/**"
|
|
pull_request:
|
|
paths:
|
|
- "docs/**"
|
|
|
|
jobs:
|
|
docs:
|
|
name: build
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: npm install
|
|
working-directory: ./docs
|
|
run: |
|
|
npm install
|
|
- name: lint
|
|
working-directory: ./docs
|
|
run: |
|
|
npm run lint
|
|
- name: gatsby build
|
|
working-directory: ./docs
|
|
run: |
|
|
npm run build
|