Skip to content

chore(deps-dev): bump typedoc from 0.26.5 to 0.26.6 (#254) #637

chore(deps-dev): bump typedoc from 0.26.5 to 0.26.6 (#254)

chore(deps-dev): bump typedoc from 0.26.5 to 0.26.6 (#254) #637

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js v20.14
uses: actions/setup-node@v4
with:
node-version: 20.14
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check licenses
run: npm run check:licenses
- name: Check security vulnerabilities
run: npm run check:security
- name: Lint
run: npm run lint
- name: Test
run: npm run test:ci
- name: Upload code coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Create release PR or publish to npm
if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next' || github.ref == 'refs/heads/canary')
uses: changesets/action@master
with:
publish: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_PAT }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}