Skip to content

Add first backend tests #1

Add first backend tests

Add first backend tests #1

Workflow file for this run

name: Lint & test
on:
push:
branches: [dev]
pull_request:
branches: [dev]
types: [synchronize, opened, reopened, ready_for_review]
workflow_call:
jobs:
lint:
name: ESLint
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out the repo
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 7
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Run ESLint
run: npm run lint
typecheck:
name: Type checking
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out the repo
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 7
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Run type checking
run: npm run typecheck
test:
name: Tests
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out the repo
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 7
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Run tests
run: npm run test