From 169a8ea839926a4ab689cabd505b5ee97ab3f28c Mon Sep 17 00:00:00 2001 From: ejahnGithub Date: Fri, 23 Feb 2024 12:43:18 -0800 Subject: [PATCH] ci update --- .github/linters/tsconfig.json | 5 ++++- .github/workflows/check-dist.yml | 3 +++ .github/workflows/linter.yml | 3 +++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/linters/tsconfig.json b/.github/linters/tsconfig.json index a34cf90..cc87883 100644 --- a/.github/linters/tsconfig.json +++ b/.github/linters/tsconfig.json @@ -5,5 +5,8 @@ "noEmit": true }, "include": ["../../__tests__/**/*", "../../src/**/*"], - "exclude": ["../../dist", "../../node_modules", "../../coverage", "*.json"] + "exclude": ["../../dist", "../../node_modules", "../../coverage", "*.json"], + "references": [ + { "path": "./packages/attest" } + ] } diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 5798200..74ba562 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -39,6 +39,9 @@ jobs: id: install run: npm ci + - name: Build @actions/attest + run: npm run build --workspace packages/attest + - name: Build dist/ Directory id: build run: npm run bundle diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index dafff7b..98bc57a 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -31,6 +31,9 @@ jobs: - name: Install Dependencies id: install run: npm ci + + - name: Build @actions/attest + run: npm run build --workspace packages/attest - name: Lint Codebase id: super-linter