mirror of
https://github.com/fluencelabs/aqua-vscode
synced 2025-03-15 22:00:52 +00:00
* 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>
35 lines
803 B
YAML
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 }}
|