Skip to content

chore(deps): bump @eslint/plugin-kit from 0.2.8 to 0.3.4 #10

chore(deps): bump @eslint/plugin-kit from 0.2.8 to 0.3.4

chore(deps): bump @eslint/plugin-kit from 0.2.8 to 0.3.4 #10

Workflow file for this run

name: Validate library's code
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "22.17"
- name: Set up pnpm as a package manager
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install dependencies
run: pnpm install
shell: bash
- name: Run ESLint script and validate
run: pnpm run lint
shell: bash
- name: Build a project using TypeScript Compiler
run: pnpm exec tsc
shell: bash
- name: Build a project
run: pnpm run build
shell: bash