Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Commit dd741ba

Browse files
committed
wip: remove mocks from tests
1 parent fe86224 commit dd741ba

16 files changed

+665
-426
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,27 @@ jobs:
1515
- name: Setup Node.js
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: '18'
18+
node-version: '20'
1919

2020
- name: Install pnpm
2121
uses: pnpm/action-setup@v2
2222
with:
2323
version: 10
2424
run_install: false
2525

26-
- name: Get pnpm store directory
27-
id: pnpm-cache
28-
shell: bash
29-
run: |
30-
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
31-
32-
- name: Setup pnpm cache
33-
uses: actions/cache@v3
34-
with:
35-
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
36-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
37-
restore-keys: |
38-
${{ runner.os }}-pnpm-store-
26+
# - name: Get pnpm store directory
27+
# id: pnpm-cache
28+
# shell: bash
29+
# run: |
30+
# echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
31+
#
32+
# - name: Setup pnpm cache
33+
# uses: actions/cache@v3
34+
# with:
35+
# path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
36+
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
37+
# restore-keys: |
38+
# ${{ runner.os }}-pnpm-store-
3939

4040
- name: Install dependencies
4141
run: pnpm install
@@ -44,4 +44,4 @@ jobs:
4444
run: pnpm test
4545

4646
- name: Run typecheck
47-
run: pnpm run typecheck
47+
run: pnpm run build

0 commit comments

Comments
 (0)