Skip to content

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

chore(test@unit): clean up failing tests

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

Workflow file for this run

name: CI - main - Lint and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-test:
strategy:
matrix:
node-version: ['22.11.0']
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'
- name: Use Yarn 4.4.0
run: corepack prepare [email protected] --activate
- name: Install Dependencies
run: yarn install --immutable
- name: Run Linter
run: yarn rw lint
- name: Run Tests
run: yarn rw test