Skip to content

chore(deps-dev): Bump typescript-eslint from 8.30.1 to 8.41.0 #29

chore(deps-dev): Bump typescript-eslint from 8.30.1 to 8.41.0

chore(deps-dev): Bump typescript-eslint from 8.30.1 to 8.41.0 #29

Workflow file for this run

name: Check the template builds
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint the project
run: pnpm lint
- name: Check style
run: pnpm prettier:check
- name: Build the project
run: pnpm build