Reusable testing patterns #193
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: 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 |