Skip to content

ci: add e2e test sharding #4

ci: add e2e test sharding

ci: add e2e test sharding #4

Workflow file for this run

name: Run unit and integration tests
on:
push:
branches:
- 'test-ci'
pull_request:
branches:
- 'test-ci'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
name: Run tests on Node ${{ matrix.node-version }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Run tests
run: pnpm run test:ci