diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 586236d..bff4d6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,8 +29,8 @@ jobs: run: pnpm install - name: Lint workspaces run: pnpm lint - test: - name: Test + build: + name: Build runs-on: ubuntu-latest strategy: matrix: @@ -49,5 +49,27 @@ jobs: cache: 'pnpm' - name: Install dependencies run: pnpm install - - name: Test workspaces - run: pnpm test \ No newline at end of file + - name: Build workspaces + run: pnpm build + # test: + # name: Test + # runs-on: ubuntu-latest + # strategy: + # matrix: + # node-version: [18.x] + # steps: + # - name: Checkout repository + # uses: actions/checkout@v3 + # - name: Use pnpm 8 + # uses: pnpm/action-setup@v2 + # with: + # version: 8 + # - name: Use Node.js ${{ matrix.node-version }} + # uses: actions/setup-node@v3 + # with: + # node-version: ${{ matrix.node-version }} + # cache: 'pnpm' + # - name: Install dependencies + # run: pnpm install + # - name: Test workspaces + # run: pnpm test \ No newline at end of file