diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59b3af3559..782973a82a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,9 +15,6 @@ jobs: - name: Install Dependencies run: npm ci - - name: Build Shared Packages - run: npm run build:shared - - name: Run Lint run: npm run lint --workspaces --if-present diff --git a/.github/workflows/deploy-canary.yml b/.github/workflows/deploy-canary.yml index 9d4631355a..ab0c1205e1 100644 --- a/.github/workflows/deploy-canary.yml +++ b/.github/workflows/deploy-canary.yml @@ -22,15 +22,15 @@ jobs: ref: ${{ env.tag }} - uses: actions/setup-node@v3 with: - node-version-file: ./ui/.nvmrc - - working-directory: ./ui + node-version-file: .nvmrc + - working-directory: ./apps/tlon-web run: | npm ci npm run build - uses: actions/upload-artifact@v3 with: name: 'ui-dist' - path: ui/dist + path: apps/tlon-web/dist glob: runs-on: ubuntu-latest name: 'Make a glob' @@ -42,7 +42,7 @@ jobs: - uses: actions/download-artifact@v3 with: name: 'ui-dist' - path: ui/dist + path: apps/tlon-web/dist - id: 'auth' uses: 'google-github-actions/auth@v1' with: @@ -52,7 +52,7 @@ jobs: - name: 'glob' uses: ./.github/actions/glob with: - folder: 'ui/dist/*' + folder: 'apps/tlon-web/dist/*' docket: 'desk/desk.docket-0' - name: Commit and Push Glob run: |