Skip to content

Update dependency typedoc to v0.25.11 #749

Update dependency typedoc to v0.25.11

Update dependency typedoc to v0.25.11 #749

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
pull_request:
paths:
- "**.ts"
- "package*json"
- ".github/workflows/*.yml"
jobs:
lint-and-format:
name: Lint and Format
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Format files
run: npm run format
- name: Push changes
uses: stefanzweifel/git-auto-commit-action@v5.0.0
with:
commit_message: Reformat code
branch: ${{ github.head_ref }}
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
needs: [lint-and-format]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Test and collect coverage info
run: npm run test
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true