From 6c062021a151cece1236d5f302258e3bb65598b1 Mon Sep 17 00:00:00 2001 From: Miguel de Elias Date: Tue, 19 Mar 2024 15:04:59 -0300 Subject: [PATCH] chore: add data edge ci --- .github/workflows/ci-data-edge.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ci-data-edge.yml diff --git a/.github/workflows/ci-data-edge.yml b/.github/workflows/ci-data-edge.yml new file mode 100644 index 000000000..065e0f964 --- /dev/null +++ b/.github/workflows/ci-data-edge.yml @@ -0,0 +1,26 @@ +name: CI - packages/data-edge + +env: + CI: true + +on: + push: + branches: "*" + paths: + - packages/data-edge/** + pull_request: + branches: "*" + paths: + - packages/data-edge/** + workflow_dispatch: + +jobs: + test-ci: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up environment + uses: ./.github/actions/setup + - name: Run tests + run: yarn test \ No newline at end of file