Skip to content

chore: increase timeout durations for CI stability in OAuth test util… #1152

chore: increase timeout durations for CI stability in OAuth test util…

chore: increase timeout durations for CI stability in OAuth test util… #1152

Workflow file for this run

name: Test
on: [push]
jobs:
unit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
project: [core, web, backend, scripts]
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Install Node.js and Yarn
uses: actions/setup-node@v4
with:
node-version: 24
cache: "yarn"
- name: Install Dependencies
run: |
yarn install --frozen-lockfile --network-timeout 300000
- name: Run ${{ matrix.project }} tests
env:
TZ: ${{ vars.TZ }}
run: |
yarn test ${{ matrix.project }}