mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-10 16:26:43 -05:00
fix lint (#7643)
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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',
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user