* chore: Use better buildjet server for e2e * Backed down buildjet hardware where not needed --------- Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com>
19 lines
643 B
YAML
19 lines
643 B
YAML
name: Unit tests
|
|
on:
|
|
workflow_call:
|
|
workflow_run:
|
|
workflows: [Crowdin Action]
|
|
types: [completed]
|
|
jobs:
|
|
test:
|
|
timeout-minutes: 20
|
|
runs-on: buildjet-2vcpu-ubuntu-2204
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: ./.github/actions/dangerous-git-checkout
|
|
- uses: ./.github/actions/yarn-install
|
|
# Should be an 8GB machine as per https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
|
|
- run: yarn test
|
|
# We could add different timezones here that we need to run our tests in
|
|
- run: TZ=America/Los_Angeles yarn test -- --timeZoneDependentTestsOnly
|