Skip to content

Commit

Permalink
chore(github): re-enable tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
virtuoushub committed Nov 22, 2024
1 parent 8924523 commit 460e814
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
lint-and-test:

strategy:
matrix:
node-version: ['22.11.0']
Expand All @@ -18,24 +18,23 @@ jobs:
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'
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

# Disabled tests - existing tests are failing
# - name: Run Tests
# run: yarn rw test
- name: Run Tests
run: yarn rw test

0 comments on commit 460e814

Please sign in to comment.