Skip to content

[GrantFox Bot] Rename the malformed test file webhook mapper.test.ts (#105) #57

[GrantFox Bot] Rename the malformed test file webhook mapper.test.ts (#105)

[GrantFox Bot] Rename the malformed test file webhook mapper.test.ts (#105) #57

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-typecheck:
name: Lint & Typecheck
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
# No lockfile is tracked (lock files are gitignored), so pnpm resolves
# versions from the workspace manifests.
run: pnpm install
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck