Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed Jun 18, 2024
1 parent 5b2ca4f commit b18658e
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cache-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
node-version: 20
cache: "pnpm"
- run: pnpm --filter !internal --filter !site install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm exec tsx internal/scripts/cache-pages
env:
FIREBASE_PRIVATE_KEY_ID: ${{ secrets.FIREBASE_PRIVATE_KEY_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm --filter !internal --filter !site install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm run commit-check
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
node-version: 20
cache: 'pnpm'
- run: pnpm --filter !internal --filter !site install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm exec playwright install --with-deps
- run: pnpm run build
- run: pnpm e2e
4 changes: 2 additions & 2 deletions .github/workflows/example-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm --filter !internal --filter !site install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm --filter !internal --filter !site install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm build:examples
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm --filter !internal --filter !site install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm run lint
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
node-version: 20
cache: "pnpm"
- run: pnpm --filter !internal --filter !site install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm install semantic-release-config-techor --workspace-root
- run: pnpm run build
- uses: lewagon/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm --filter !internal --filter !site install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm test
2 changes: 1 addition & 1 deletion .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm --filter !internal --filter !site install --frozen-lockfile
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm run type-check
2 changes: 1 addition & 1 deletion site/preinstall.sh → preinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ fi
# Initialize and update submodules
git submodule update --init --recursive

cd ../internal
cd internal
git checkout main
echo ""

0 comments on commit b18658e

Please sign in to comment.