mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 10:25:42 +03:00
28 lines
659 B
YAML
28 lines
659 B
YAML
name: Ember Exam
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
partition:
|
|
required: true
|
|
type: number
|
|
split:
|
|
required: true
|
|
type: number
|
|
secrets:
|
|
PERCY_TOKEN:
|
|
required: true
|
|
|
|
jobs:
|
|
exam:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
steps:
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
- name: yarn install
|
|
run: cd ui && yarn install --frozen-lockfile
|
|
- name: Ember tests
|
|
env:
|
|
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
|
|
run: cd ui && yarn exam:parallel -- --split=${{ inputs.split }} --partition=${{ inputs.partition }}
|