Skip to content

Bump eslint from 9.31.0 to 9.32.0 #93

Bump eslint from 9.31.0 to 9.32.0

Bump eslint from 9.31.0 to 9.32.0 #93

Workflow file for this run

name: Project CICD
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm run lint
- name: Run test with coverage
run: pnpm run test:cov
- name: Run Build
run: pnpm run build
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build docker image
run: docker build -t typescript-project .