This commit is contained in:
Matt Fiddaman
2026-04-27 22:24:16 +01:00
committed by GitHub
parent c7d39961cf
commit c2987af64f
2 changed files with 3 additions and 5 deletions

View File

@@ -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:

View File

@@ -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',
});
});