From d0cb56af02a5df8f92978d7238971c194fb67fb7 Mon Sep 17 00:00:00 2001 From: rzvxa Date: Tue, 6 Aug 2024 19:10:54 +0330 Subject: [PATCH] ci: add `oxc_ast/src/generated` to the ci filter. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8ec660f2bf6a..01b77c28247f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -277,6 +277,7 @@ jobs: filters: | src: - 'crates/oxc_ast/src/ast/*' # single star is intentional + - 'crates/oxc_ast/src/generated/**' # to potentially cause CI error if generated files are edited manually - 'crates/oxc_syntax/src/number.rs' - 'crates/oxc_syntax/src/operator.rs' - 'tasks/ast_codegen/src/**'