Skip to content

avoid unhandled rejection error to test runPromisesSequentially #2

avoid unhandled rejection error to test runPromisesSequentially

avoid unhandled rejection error to test runPromisesSequentially #2

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
- '!main'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 180
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Test
run: pnpm t
- name: Build
run: pnpm build