feat(parent structure): add method that return note parent structure #831
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: API tests | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- 'v*' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
tests: | |
runs-on: ubuntu-22.04 | |
permissions: | |
# Required to checkout the code | |
contents: read | |
strategy: | |
# If set to true, Github will cancel all other jobs if one of the jobs fails | |
fail-fast: false | |
matrix: | |
branch: | |
- ${{ github.head_ref }} | |
- "main" | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: codex | |
POSTGRES_DB: notes | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 127.0.0.1:5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
volumes: | |
- ./database:/var/lib/postgresql/data | |
steps: | |
- name: Wait for PostgreSQL | |
uses: jakejarvis/wait-action@master | |
with: | |
time: '20s' | |
- name: Make runner the owner of database folder | |
run: sudo chown -R $USER database | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ matrix.branch }} | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: yarn install | |
- name: Run tests | |
run: yarn coverage | |
- name: Get an appropriate name for an artifact | |
run: echo "ARTIFACT_NAME=coverage-${{ matrix.branch }}" | tr -d ':<>|*?\r\n\/\\' >> $GITHUB_ENV | |
- name: Upload coverage | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.ARTIFACT_NAME }} | |
path: coverage | |
report-coverage: | |
needs: tests | |
runs-on: ubuntu-22.04 | |
permissions: | |
# Required to checkout the code | |
contents: read | |
# Required to put a comment into the pull-request | |
pull-requests: write | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Get a name of the artifact | |
run: echo ARTIFACT_NAME="coverage-${{ github.head_ref }}" | tr -d ":<>|*?\r\n\/\\" >> $GITHUB_ENV | |
- name: Download coverage artifacts for the current branch | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.ARTIFACT_NAME }} | |
path: coverage | |
- name: Download coverage artifacts for the main branch | |
uses: actions/download-artifact@v4 | |
with: | |
name: coverage-main | |
path: coverage-main | |
- name: Report coverage | |
# if: always() is set to generate the report even if tests are failing | |
if: always() | |
uses: davelosert/vitest-coverage-report-action@v2 | |
with: | |
json-summary-compare-path: coverage-main/coverage-summary.json |