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

chore(deps): update typescript-eslint monorepo to v6.4.1 #631

chore(deps): update typescript-eslint monorepo to v6.4.1

chore(deps): update typescript-eslint monorepo to v6.4.1 #631

Workflow file for this run

# SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
#
# SPDX-License-Identifier: AGPL-3.0-only
name: Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache yarn cache
uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-18-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-18
- name: Set up NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install --immutable
- name: Build project
run: yarn build
- name: Test Project
run: yarn test