Skip to content

fix: check all doc access for app-attachment against the app entity #12

fix: check all doc access for app-attachment against the app entity

fix: check all doc access for app-attachment against the app entity #12

name: publish release
on:
push:
branches:
- master
jobs:
verify:
name: Verify replication-backend
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run Tests with coverage
run: npm run test:cov
- uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_ID }}
with:
coverageLocations: coverage/lcov.info:lcov
publish:
name: Publish Release
runs-on: ubuntu-latest
needs:
- verify
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
npx semantic-release