diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 50da0f136..42935924a 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,5 +1,3 @@ - - ### 🎯 Goal _Describe why we are making this change_ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1423fc7f..7e6d08edb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,6 +57,11 @@ jobs: - name: Build SDK run: yarn build + - name: Install example dependencies + working-directory: examples/vite + run: yarn install --frozen-lockfile + shell: bash + - name: Vercel Pull/Build/Deploy (Preview) working-directory: examples/vite if: ${{ github.ref_name != 'master' }} diff --git a/package.json b/package.json index f3b27729f..dfb3296ac 100644 --- a/package.json +++ b/package.json @@ -220,7 +220,7 @@ }, "scripts": { "clean": "rm -rf dist", - "build": "yarn clean && concurrently './scripts/copy-css.sh' 'yarn build-translations' 'vite build' 'tsc'", + "build": "yarn clean && concurrently './scripts/copy-css.sh' 'yarn build-translations' 'vite build' 'tsc --project tsconfig.lib.json'", "build-translations": "i18next-cli extract", "coverage": "jest --collectCoverage && codecov", "lint": "yarn prettier --list-different && yarn eslint && yarn validate-translations",