Squash all commit from feat/cloud-sync

This commit is contained in:
DarkSky
2022-12-31 01:59:07 +08:00
parent ddf3305bc1
commit 582aed8744
19 changed files with 37 additions and 39 deletions

View File

@@ -71,6 +71,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
path: ./packages/app/.next
lint:
name: Lint and E2E Test
runs-on: ubuntu-latest

View File

@@ -2,7 +2,7 @@ name: Pathfinder changelog
on:
push:
branches: [feat/filesystem_and_search, master]
branches: [feat/cloud-sync, master]
# Cancels all previous workflow runs for pull requests that have not completed.
# See https://docs.github.com/en/actions/using-jobs/using-concurrency

View File

@@ -2,9 +2,9 @@ name: Pathfinder Check
on:
push:
branches: [feat/filesystem_and_search, pathfinder1.1]
branches: [feat/cloud-sync]
pull_request:
branches: [feat/filesystem_and_search, pathfinder1.1]
branches: [feat/cloud-sync]
# Cancels all previous workflow runs for pull requests that have not completed.
# See https://docs.github.com/en/actions/using-jobs/using-concurrency
@@ -111,10 +111,13 @@ jobs:
with:
name: artifact
path: packages/app/.next/
# Temporary shutdown of E2E testing
- name: Lint & E2E Test
run: |
pnpm lint --max-warnings=0
PLAYWRIGHT_BROWSERS_PATH=0 npx playwright install chromium
PLAYWRIGHT_BROWSERS_PATH=0 pnpm test
PLAYWRIGHT_BROWSERS_PATH=0 pnpm test:dc
env:
NEXT_PUBLIC_FIREBASE_API_KEY: ${{ secrets.NEXT_PUBLIC_FIREBASE_API_KEY }}
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN: ${{ secrets.NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN }}
@@ -123,17 +126,3 @@ jobs:
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID }}
NEXT_PUBLIC_FIREBASE_APP_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_APP_ID }}
NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID }}
# - name: Lint & E2E Test
# run: |
# pnpm lint --max-warnings=0
# PLAYWRIGHT_BROWSERS_PATH=0 npx playwright install chromium
# PLAYWRIGHT_BROWSERS_PATH=0 pnpm test
# PLAYWRIGHT_BROWSERS_PATH=0 pnpm test:dc
# env:
# NEXT_PUBLIC_FIREBASE_API_KEY: ${{ secrets.NEXT_PUBLIC_FIREBASE_API_KEY }}
# NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN: ${{ secrets.NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN }}
# NEXT_PUBLIC_FIREBASE_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_PROJECT_ID }}
# NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET: ${{ secrets.NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET }}
# NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID }}
# NEXT_PUBLIC_FIREBASE_APP_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_APP_ID }}
# NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID }}