Skip to content

chore(deps-dev): bump typedoc from 0.25.1 to 0.25.3 #183

chore(deps-dev): bump typedoc from 0.25.1 to 0.25.3

chore(deps-dev): bump typedoc from 0.25.1 to 0.25.3 #183

Workflow file for this run

name: Build
on:
push:
branches-ignore: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup NodeJS 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Set Yarn Cache Directory
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Restore Yarn Cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn
- name: Build application
run: yarn build