Skip to content

BC-7851 - Add tldraw-document delete api #15

BC-7851 - Add tldraw-document delete api

BC-7851 - Add tldraw-document delete api #15

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
env:
NODE_VERSION: '20'
jobs:
tests_cov:
runs-on: ubuntu-latest
strategy:
matrix:
shard: [1]
services:
rabbitmq:
image: rabbitmq:3
ports:
- 5672:5672
steps:
- name: checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: npm ci
run: npm ci --prefer-offline --no-audit
- name: test:cov - test all with coverage
timeout-minutes: 15
run: export RUN_WITHOUT_JEST_COVERAGE='true' && export NODE_OPTIONS='--max_old_space_size=4096' && ./node_modules/.bin/jest --shard=${{ matrix.shard }}/${{ strategy.job-total }} --coverage --force-exit
- name: save-coverage
run: mv coverage/lcov.info coverage/${{matrix.shard}}.info
- name: "upload-artifacts"
uses: actions/upload-artifact@v4
with:
name: coverage-artifacts-${{ matrix.shard }}
path: coverage/
sonarcloud:
name: SonarCloud coverage
runs-on: ubuntu-latest
needs: [tests_cov]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/download-artifact@v4
with:
pattern: coverage-artifacts-*
path: coverage
merge-multiple: true
- name: Merge Code Coverage
run: |
sudo apt-get install -y lcov
find coverage -name *.info -exec echo -a {} \; | xargs lcov -o merged-lcov.info
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: SonarCloud upload coverage
uses: SonarSource/sonarcloud-github-action@v3.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
lint:
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- name: checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: npm ci
run: npm ci --prefer-offline --no-audit
- name: lint
run: npm run lint