mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
20 lines
358 B
YAML
20 lines
358 B
YAML
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
unit:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: setup environment
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
actor: test-unit
|
|
cacheTurbo: false
|
|
|
|
- name: unit tests
|
|
run: pnpm test
|