From 8de2a251183654ee82bbd9a14410d2d047f0ef86 Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Fri, 1 Mar 2024 14:24:51 -0800 Subject: [PATCH] Update CI to run tests. --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5dbc613d..22a083c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,9 +27,10 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - cache: 'npm' + cache: 'yarn' env: DATABASE_TYPE: ${{ matrix.db-type }} - run: npm install --global yarn - - run: yarn install --frozen-lockfile + - run: yarn install + - run: yarn test - run: yarn build