Skip to content

chore(deps-dev): bump typescript-eslint from 7.10.0 to 8.4.0 #271

chore(deps-dev): bump typescript-eslint from 7.10.0 to 8.4.0

chore(deps-dev): bump typescript-eslint from 7.10.0 to 8.4.0 #271

Workflow file for this run

name: gitarist CI
on:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
GITHUB_OWNER: thilllon
GITHUB_REPO: turing
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
strategy:
matrix:
node-version: [20]
steps:
- name: 'ci variables'
run: echo "${{ env.GITHUB_OWNER }} ${{ env.GITHUB_REPO }}"
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: latest
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
# dependabot updates pnpm-lock file
- run: pnpm install
- run: pnpm build
- run: pnpm prettier --check .
- run: pnpm typecheck
- run: pnpm lint
- run: pnpm test