fix: nx build input (#2755)

This commit is contained in:
Himself65
2023-06-12 13:06:23 +08:00
committed by GitHub
parent ccda45bdd2
commit dff8a0db7d
2 changed files with 48 additions and 24 deletions

View File

@@ -77,7 +77,7 @@ jobs:
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: | restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}- ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-
- name: Build - name: Build Web
run: yarn nx build @affine/web run: yarn nx build @affine/web
env: env:
API_SERVER_PROFILE: local API_SERVER_PROFILE: local
@@ -94,25 +94,7 @@ jobs:
path: ./apps/web/.next path: ./apps/web/.next
if-no-files-found: error if-no-files-found: error
build-web-for-desktop: - name: Build Web (Desktop)
name: Build @affine/web for desktop
runs-on: ubuntu-latest
environment: development
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: ./.github/actions/setup-node
- name: Cache Next.js
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/apps/web/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-
- name: Build
run: yarn nx build @affine/web run: yarn nx build @affine/web
env: env:
API_SERVER_PROFILE: affine API_SERVER_PROFILE: affine
@@ -271,7 +253,7 @@ jobs:
path: ./test-results path: ./test-results
if-no-files-found: ignore if-no-files-found: ignore
dekstop-test: desktop-test:
name: Desktop Test name: Desktop Test
runs-on: ${{ matrix.spec.os }} runs-on: ${{ matrix.spec.os }}
environment: development environment: development
@@ -308,7 +290,7 @@ jobs:
target: x86_64-pc-windows-msvc, target: x86_64-pc-windows-msvc,
test: true, test: true,
} }
needs: [build-web-for-desktop] needs: [build-web]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Setup Node.js - name: Setup Node.js

46
nx.json
View File

@@ -22,10 +22,52 @@
}, },
"targetDefaults": { "targetDefaults": {
"build": { "build": {
"dependsOn": ["^build"] "dependsOn": ["^build"],
"inputs": [
{
"runtime": "node -v"
},
{
"env": "ENABLE_BOOKMARK_OPERATION"
},
{
"env": "ENABLE_PLUGIN"
},
{
"env": "ENABLE_ALL_PAGE_FILTER"
},
{
"env": "ENABLE_IMAGE_PREVIEW_MODAL"
},
{
"env": "ENABLE_TEST_PROPERTIES"
},
{
"env": "ENABLE_LEGACY_PROVIDER"
},
{
"env": "ENABLE_BC_PROVIDER"
},
{
"env": "ENABLE_DEBUG_PAGE"
},
{
"env": "CHANGELOG_URL"
},
{
"env": "ENABLE_PRELOADING"
},
{
"env": "API_SERVER_PROFILE"
}
]
}, },
"e2e": { "e2e": {
"dependsOn": ["^build"] "dependsOn": ["^build"],
"inputs": [
{ "runtime": "node -v" },
{ "runtime": "yarn playwright --version" }
]
}, },
"e2e:coverage": { "e2e:coverage": {
"dependsOn": ["^build"] "dependsOn": ["^build"]