Skip to content

chore(test@unit): clean up failing tests #10

chore(test@unit): clean up failing tests

chore(test@unit): clean up failing tests #10

Workflow file for this run

name: CI - main - Lint and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-test:
runs-on: ubuntu-24.04
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version-file: '.nvmrc'
- name: Install Dependencies
run: yarn install --immutable
- name: Run Linter
run: yarn rw lint
- name: Run Tests
run: yarn rw test