diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23bd65a..2b5968e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,9 @@ jobs: - name: Setup dependencies uses: ./.github/actions/ci-setup + - name: Run next build + run: yarn next build + - name: Run test run: yarn test diff --git a/tsconfig.json b/tsconfig.json index 818766f..98b8920 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,8 @@ "incremental": false, "resolveJsonModule": true, "isolatedModules": true, - "jsx": "preserve" + "jsx": "preserve", + "ignoreDeprecations": "6.0" }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], "exclude": ["node_modules"]