diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1783ba..4c1077d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,10 @@ jobs: uses: actions/setup-python@v4.7.0 with: python-version: "3.10.x" + - name: Setup Node + uses: actions/setup-node@v3.8.1 + with: + node-version: 18.x - name: Install requirements run: python3 -m pip install -r requirements.txt - name: Run EL @@ -21,3 +25,5 @@ jobs: run: dbt deps && dbt build - name: Lint SQL run: sqlfluff lint models --format github-annotation-native + - name: Build Evidence + run: npm --filter ./reports run build:strict