diff --git a/.github/actions/release-notes/generate/action.yml b/.github/actions/release-notes/generate/action.yml index c657120b7f..b936b89bd5 100644 --- a/.github/actions/release-notes/generate/action.yml +++ b/.github/actions/release-notes/generate/action.yml @@ -9,7 +9,7 @@ runs: node-version: 22 - name: Install dependencies shell: bash - run: yarn workspaces focus @actual-app/ci-actions + run: yarn workspaces focus actual @actual-app/ci-actions - name: Generate release notes shell: bash env: diff --git a/packages/ci-actions/bin/release-notes-generate.mjs b/packages/ci-actions/bin/release-notes-generate.mjs index 7e9ff755fa..b043987559 100644 --- a/packages/ci-actions/bin/release-notes-generate.mjs +++ b/packages/ci-actions/bin/release-notes-generate.mjs @@ -229,10 +229,8 @@ await group('Remove used release notes', async () => { ); }); -await group('Lint generated files', async () => { - const targets = `${blogPath} ${releasesPath}`; - await exec(`yarn exec oxfmt ${targets}`, { stdio: 'inherit' }); - await exec(`yarn exec oxlint --fix --type-aware --quiet ${targets}`, { +await group('Format generated files', async () => { + await exec(`yarn exec oxfmt ${blogPath} ${releasesPath}`, { stdio: 'inherit', }); });