chore(deps): update dependency typedoc to v0.27.3 - autoclosed #276
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install npm packages (with caching) | |
uses: bahmutov/[email protected] | |
- name: Run tests | |
run: npm test | |
- name: Generate and publish coveralls coverage reports | |
run: npm run coveralls | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
- name: Create deployment folder | |
run: mkdir ./deploy && touch ./.nojekyll | |
- name: Generate HTML coverage reports | |
run: npm run coverage | |
- name: debug | |
run: cp -a ./coverage ./deploy | |
- name: Build documentation | |
run: npm run docs | |
- name: Copy documentation contents (not folder itself!) to deployment folder | |
run: cp -a ./docs/. ./deploy | |
- name: Deploy to GitHub pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./deploy |