Fix github checks (#263)
* Update dependencies which pass tests locally * Break the yarn cache in an attempt to fix checks * playground: Add wrapping error info for build.ts * playground: Don't use dev mode in CI tests * playground: Use tsc for typecheck * playground: Specify working esbuild version 0.13.15 * playground: Use only promises in build.ts * playground: Ensure serving in ci e2e * Add echo for vercel for build:static
This commit is contained in:
parent
00265471ba
commit
11b5d175f4
9 changed files with 2981 additions and 1265 deletions
6
.github/workflows/compatibility-tests.yml
vendored
6
.github/workflows/compatibility-tests.yml
vendored
|
@ -35,9 +35,11 @@ jobs:
|
|||
path: |
|
||||
${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||
${{ github.workspace }}/compatibility-tests/*/.yarn/cache
|
||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
key:
|
||||
${{ runner.os }}-${{ matrix.node-version }}-yarn-${{
|
||||
hashFiles('**/yarn.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
${{ runner.os }}-${{ matrix.node-version }}-yarn-
|
||||
|
||||
- run: yarn install
|
||||
- run: yarn test:compatibility:ci
|
||||
|
|
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
@ -35,9 +35,11 @@ jobs:
|
|||
path: |
|
||||
${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||
${{ github.workspace }}/compatibility-tests/*/.yarn/cache
|
||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
key:
|
||||
${{ runner.os }}-${{ matrix.node-version }}-yarn-${{
|
||||
hashFiles('**/yarn.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
${{ runner.os }}-${{ matrix.node-version }}-yarn-
|
||||
|
||||
- run: yarn install
|
||||
- run: yarn lint:all --max-warnings 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue