Skip to content

Commit

Permalink
test: run ci tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcosta7 committed Dec 4, 2023
1 parent c27c320 commit 550610d
Showing 1 changed file with 82 additions and 9 deletions.
91 changes: 82 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,29 @@ on:
workflow_dispatch:

jobs:
# Builds the library and persists it as an artifact.
# Later jobs can then reuse that build artifact, skipping
# the build step.
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- uses: pnpm/action-setup@v2
with:
version: 7.12

- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

test_unit:
needs: build
runs-on: macos-latest
steps:
- name: Checkout
Expand All @@ -31,21 +50,75 @@ jobs:
- name: Unit tests
run: pnpm test:unit

- name: Build
run: pnpm build
test_node:
needs: build
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- uses: pnpm/action-setup@v2
with:
version: 7.12

- name: Node.js tests
- name: Install dependencies
run: pnpm install

- name: Unit tests
run: pnpm test:node

test_browser:
needs: build
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- uses: pnpm/action-setup@v2
with:
version: 7.12

- name: Install dependencies
run: pnpm install

- name: Browser tests
run: pnpm test:browser

- name: Native tests
run: pnpm test:native

- name: Upload test artifacts
if: always()
uses: actions/upload-artifact@v3
with:
name: playwright-report
path: test/browser/test-results

test_native:
needs: build
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- uses: pnpm/action-setup@v2
with:
version: 7.12

- name: Install dependencies
run: pnpm install

- name: Native tests
run: pnpm test:native

0 comments on commit 550610d

Please sign in to comment.