Skip to content

Commit

Permalink
update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
m-Ryan committed Apr 19, 2024
1 parent 720435d commit 55597ff
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/github-actions-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

strategy:
Expand All @@ -18,18 +17,23 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: false

- name: Install dependencies core
run: |
cd packages/easy-email-core && yarn
run: |
cd packages/easy-email-core && pnpm install
- name: Run tests core
run: yarn test:core
run: pnpm run test:core

- name: Install dependencies extensions
run: |
cd packages/easy-email-extensions && yarn
cd packages/easy-email-extensions && pnpm run
- name: Run tests extensions
run: yarn test:extensions
run: pnpm run test:extensions

0 comments on commit 55597ff

Please sign in to comment.