Skip to content

Bump typescript-eslint from 8.18.0 to 8.43.0 #268

Bump typescript-eslint from 8.18.0 to 8.43.0

Bump typescript-eslint from 8.18.0 to 8.43.0 #268

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable corepack
run: |
corepack enable pnpm
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check the typings
run: pnpm type-check
- name: Execute the tests
run: pnpm test
- name: Build the library and the example
run: pnpm prd