Skip to content

refactor: favour private fields over typescript private annotation #4844

refactor: favour private fields over typescript private annotation

refactor: favour private fields over typescript private annotation #4844

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
- release-*
types: [opened, edited, synchronize, reopened]
jobs:
pr-title:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Cache node_modules
id: cache-modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('package.json') }}
- name: Install 🔧
run: yarn install --immutable
- uses: JulienKode/pull-request-name-linter-action@v0.5.0