Skip to content

fix: missing sub key of BusinessInvitationWithBusinessInfo (#558) #384

fix: missing sub key of BusinessInvitationWithBusinessInfo (#558)

fix: missing sub key of BusinessInvitationWithBusinessInfo (#558) #384

Workflow file for this run

name: Lint Repo
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout Release
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Using Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://npm.pkg.github.com"
- name: Install deps
run: |
npm install -g npm@latest
npm install
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Lint
run: npm run lint