Skip to content

chore(deps): update dependency eslint-plugin-jest to v27.4.0 #667

chore(deps): update dependency eslint-plugin-jest to v27.4.0

chore(deps): update dependency eslint-plugin-jest to v27.4.0 #667

Workflow file for this run

# SPDX-FileCopyrightText: 2020 Tilman Vatteroth
#
# SPDX-License-Identifier: MIT
name: Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Cache yarn cache
uses: actions/[email protected]
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