Skip to content

Bump @typescript-eslint/eslint-plugin from 6.7.4 to 6.7.5 #101

Bump @typescript-eslint/eslint-plugin from 6.7.4 to 6.7.5

Bump @typescript-eslint/eslint-plugin from 6.7.4 to 6.7.5 #101

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: Use Node.js v18 (LTS)
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Lint the source files
run: yarn lint
- name: Type check
run: yarn type-check
- name: Build the library
run: yarn build
- name: Build the typings
run: yarn build:types
- name: Execute the tests
run: |
yarn test:unit
yarn test:functional