Skip to content

Support singleton applications defined in app directory #989

Support singleton applications defined in app directory

Support singleton applications defined in app directory #989

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_VERSION: '24'
NODE_OPTIONS: '--max_old_space_size=4096'
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm ci && npm run build:release
- name: Codecov
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
directory: ./reports/coverage
flags: unittests
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}