test: fix test assertions for debug logging #1199
Workflow file for this run
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: Continuous Integration | |
on: [push, pull_request] | |
env: | |
NODE_VERSION: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository ποΈ | |
uses: actions/checkout@v4 | |
- name: Setup pnpm π | |
uses: pnpm/action-setup@v2 | |
- name: Get Node.js Version π | |
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV | |
- name: Setup Node.js π | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: pnpm | |
- name: Install NPM Packages π¨π»βπ» | |
run: pnpm install --frozen-lockfile | |
- name: Run Biome π | |
run: pnpm run lint | |
- name: Check Types π§ | |
run: pnpm run typecheck | |
- name: Run TS Compilation, Linter, and Tests π | |
run: xvfb-run -a pnpm run test |