Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

chore: merge TypeDoc config into TypeScript config #34

chore: merge TypeDoc config into TypeScript config

chore: merge TypeDoc config into TypeScript config #34

Workflow file for this run

name: Node.js workflow
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build:all
- name: Deploy documentation
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <support+actions@github.com>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ github.event_name == 'push' }}
- name: Upload code coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true