2021-07-23 09:00:07 +00:00
|
|
|
name: Test Unit
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
2024-07-29 13:58:04 +00:00
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
|
|
|
- 'script/gcg/**'
|
2021-07-23 09:00:07 +00:00
|
|
|
|
|
|
|
env:
|
2024-08-28 13:00:06 +00:00
|
|
|
GO_VERSION: '1.23'
|
2021-07-23 09:00:07 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
test-unit:
|
2024-04-22 15:04:05 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-07-23 09:00:07 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
2024-01-09 16:00:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2021-07-23 09:00:07 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2024-01-09 16:00:07 +00:00
|
|
|
- name: Set up Go ${{ env.GO_VERSION }}
|
|
|
|
uses: actions/setup-go@v5
|
2021-07-23 09:00:07 +00:00
|
|
|
with:
|
2024-01-09 16:00:07 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2021-07-23 09:00:07 +00:00
|
|
|
|
2021-09-15 08:36:14 +00:00
|
|
|
- name: Avoid generating webui
|
2022-02-18 14:44:08 +00:00
|
|
|
run: touch webui/static/index.html
|
2021-07-23 09:00:07 +00:00
|
|
|
|
|
|
|
- name: Tests
|
|
|
|
run: make test-unit
|
2024-06-07 09:06:05 +00:00
|
|
|
|
|
|
|
test-ui-unit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Node.js ${{ env.NODE_VERSION }}
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version-file: webui/.nvmrc
|
|
|
|
cache: 'yarn'
|
|
|
|
cache-dependency-path: webui/yarn.lock
|
|
|
|
|
|
|
|
- name: UI unit tests
|
|
|
|
run: |
|
|
|
|
yarn --cwd webui install
|
|
|
|
yarn --cwd webui test:unit:ci
|