diff --git a/.github/workflows/docs-ci.yml b/.github/workflows/docs-ci.yml new file mode 100644 index 0000000..f1fd715 --- /dev/null +++ b/.github/workflows/docs-ci.yml @@ -0,0 +1,20 @@ +name: Docs CI + +on: + push: + branches: [ main ] + + pull_request: + branches: [ main ] + +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + - name: Install dependencies + run: npm install + - name: Build + run: npm run build diff --git a/.github/workflows/ci.yml b/.github/workflows/go-ci.yml similarity index 99% rename from .github/workflows/ci.yml rename to .github/workflows/go-ci.yml index c14b3f1..980e972 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/go-ci.yml @@ -1,4 +1,4 @@ -name: CI +name: Go CI on: push: