Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.13.1 to 8.5.0 #55

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.13.1 to 8.5.0

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.13.1 to 8.5.0 #55

Workflow file for this run

name: "Tests"
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
jobs:
tests:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install PNpm
uses: pnpm/action-setup@v4
with:
version: 9.1.4
run_install: false
- name: Setup Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'pnpm'
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Tests
run: pnpm test