Skip to content

chore(deps): update bfra-me/renovate-action action to v2.7.8 #1279

chore(deps): update bfra-me/renovate-action action to v2.7.8

chore(deps): update bfra-me/renovate-action action to v2.7.8 #1279

Workflow file for this run

# Continuous Integration jobs for this repository.
---
name: CI
'on':
push:
branches: [main, 'renovate/**']
pull_request:
types: [opened, synchronize]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup pnpm
uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # v2.4.0
- name: Setup Node.js
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
cache: pnpm
node-version-file: '.node-version'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check formatting
run: pnpm run check-format
- name: Lint
run: pnpm run lint
- name: Run tests
run: pnpm run test