feat: Add crud for Tenants & middleware for current tenant and user role #787
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "internal/tools" | |
on: | |
push: | |
branches: [ '**' ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [ 18, 20 ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/workflows/actions/setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
- shell: bash | |
run: pnpm install | |
--include-workspace-root | |
--frozen-lockfile | |
--filter=tools... | |
- name: Lint | |
shell: bash | |
run: pnpm nx run tools:lint |