mirror of
https://github.com/RocketChat/Rocket.Chat.git
synced 2025-12-28 06:47:25 +00:00
69 lines
1.6 KiB
YAML
69 lines
1.6 KiB
YAML
name: Tests Unit
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
node-version:
|
|
required: true
|
|
type: string
|
|
deno-version:
|
|
required: true
|
|
type: string
|
|
enterprise-license:
|
|
required: false
|
|
type: string
|
|
secrets:
|
|
CODECOV_TOKEN:
|
|
required: false
|
|
|
|
env:
|
|
MONGO_URL: mongodb://localhost:27017/rocketchat?replicaSet=rs0&directConnection=true
|
|
TOOL_NODE_FLAGS: ${{ vars.TOOL_NODE_FLAGS }}
|
|
ENTERPRISE_LICENSE: ${{ inputs.enterprise-license }}
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-24.04
|
|
|
|
name: Unit Tests
|
|
|
|
steps:
|
|
- name: Collect Workflow Telemetry
|
|
uses: catchpoint/workflow-telemetry-action@v2
|
|
with:
|
|
theme: dark
|
|
job_summary: true
|
|
comment_on_pr: false
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup NodeJS
|
|
uses: ./.github/actions/setup-node
|
|
with:
|
|
node-version: ${{ inputs.node-version }}
|
|
deno-version: ${{ inputs.deno-version }}
|
|
cache-modules: true
|
|
install: true
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- uses: rharkor/caching-for-turbo@v1.8
|
|
|
|
- name: Restore packages build
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: packages-build
|
|
path: /tmp
|
|
|
|
- name: Unpack packages build
|
|
shell: bash
|
|
run: |
|
|
tar -xzf /tmp/RocketChat-packages-build.tar.gz -C .
|
|
|
|
- name: Unit Test
|
|
run: yarn testunit
|
|
|
|
- uses: codecov/codecov-action@v3
|
|
with:
|
|
flags: unit
|
|
verbose: true
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|