Skip to content

Commit

Permalink
ci: workflows update
Browse files Browse the repository at this point in the history
  • Loading branch information
radoslavirha committed Oct 3, 2023
1 parent 99722a8 commit 23b848a
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 68 deletions.
26 changes: 1 addition & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
name: CI

# yamllint disable-line rule:truthy
on:
push:
workflow_dispatch:
Expand Down Expand Up @@ -50,26 +48,4 @@ jobs:
- name: Install dependencies
run: pnpm install
- 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
run: pnpm build
28 changes: 28 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: PR

on:
pull_request:

jobs:
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
43 changes: 0 additions & 43 deletions .github/workflows/release.yml

This file was deleted.

0 comments on commit 23b848a

Please sign in to comment.