Skip to content

Implement test suite for teams and invitations #12

Implement test suite for teams and invitations

Implement test suite for teams and invitations #12

Workflow file for this run

name: Code Quality
on:
pull_request: {}
workflow_dispatch: {}
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm run lint
semgrep:
name: Static Analysis
runs-on: ubuntu-latest
container:
image: semgrep/semgrep
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v4
- name: Run Semgrep Scan
# Pointing to your bouncer.yml local rules
run: semgrep scan --config .semgrep/rules --error