Skip to content

Commit

Permalink
ci: ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
radoslavirha committed Oct 3, 2023
1 parent 72389a6 commit 16a7e9a
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -49,5 +49,27 @@ jobs:
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Test workspaces
run: pnpm test
- 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

0 comments on commit 16a7e9a

Please sign in to comment.