aqua-vscode/.github/workflows/run-tests.yml
InversionSpaces 89fcde5d26
feat(tests): Add unit tests [LNG-323] (#81)
* Add imports tests

* Add unit tests on document info

* Add workflow

* PR fixes

* Update server/src/test/info.test.ts

Co-authored-by: shamsartem <shamsartem@gmail.com>

* PR fixes

* Update target, PR fixes

* Update .vscodeignore

---------

Co-authored-by: shamsartem <shamsartem@gmail.com>
2024-01-18 10:25:09 +01:00

35 lines
803 B
YAML

name: 'test'
on:
pull_request:
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/tests.yml'
- '!.github/workflows/run-tests.yml'
push:
branches:
- 'main'
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/tests.yml'
- '!.github/workflows/run-tests.yml'
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
tests:
name: 'Integration tests'
uses: ./.github/workflows/tests.yml
with:
ref: ${{ github.ref }}
unit-tests:
name: 'Unit tests'
uses: ./.github/workflows/unit-tests.yml
with:
ref: ${{ github.ref }}