Skip to content

Reusable testing patterns #193

Reusable testing patterns

Reusable testing patterns #193

Workflow file for this run

name: Integration Tests
on:
push:
branches: ['main']
pull_request:
branches: ['main']
paths-ignore:
- 'README.md'
jobs:
ts-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use pnpm 8
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js 18.12.1
uses: actions/setup-node@v3
with:
node-version: '18.12.1'
cache: 'pnpm'
- name: Install npm dependencies
run: pnpm install --frozen-lockfile
- name: Run linter
run: pnpm run lint
- name: Run Prettier
run: pnpm run prettier:check
- name: Build package
run: pnpm run build
- name: Run tests
run: pnpm run test