feat: 4030 rewrite and restructure other pages (#4079) #5479
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- 'apps/**' | |
- 'packages/**' | |
- '.github/workflows/**' | |
push: | |
branches: | |
- develop | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
jobs: | |
setup: | |
uses: ./.github/workflows/_setup.yml | |
secrets: inherit | |
with: | |
cacheKey: ${{ github.sha }} | |
checkout_paths: packages apps .github | |
packages: | |
name: Process packages | |
runs-on: ubuntu-latest | |
needs: setup | |
steps: | |
- name: Use "setup" cache | |
id: setup-cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./* | |
~/.pnpm-store | |
key: ${{ github.sha }} | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22.12.0' | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
# Fallback if cache miss (shouldn’t happen as job needs: setup) | |
- name: Fallback checkout (cache miss) | |
if: steps.setup-cache.outputs.cache-hit != 'true' | |
uses: actions/checkout@v4 | |
- name: Fallback install (cache miss) | |
if: steps.setup-cache.outputs.cache-hit != 'true' | |
run: pnpm install | |
- name: Build packages | |
id: build-packages | |
run: pnpm run build | |
- name: Test packages | |
id: test-packages | |
run: pnpm run test | |
- name: Lint packages | |
id: lint-packages | |
run: pnpm run lint:all | |
- name: Type check packages | |
id: type-check-packages | |
run: pnpm run types | |
- name: log-errors-to-slack | |
uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: failure() |