Skip to content

chore(deps): bump typedoc from 0.25.1 to 0.25.7 #312

chore(deps): bump typedoc from 0.25.1 to 0.25.7

chore(deps): bump typedoc from 0.25.1 to 0.25.7 #312

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install packages
run: yarn
- name: Compile code
run: yarn build:clean
- name: Format
run: yarn format:check
- name: Lint
run: yarn lint
- name: Test
run: yarn test