This repository was archived by the owner on Mar 16, 2026. It is now read-only.
chore(deps-dev): bump postcss from 8.4.23 to 8.4.31 #657
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: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| build: | |
| name: Build and Test | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| # To use Remote Caching, uncomment the next lines and follow the steps below. | |
| # env: | |
| # TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| # TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 2 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Generate Prisma Types | |
| run: yarn run db:generate | |
| # - name: Unit Tests | |
| # run: yarn test | |
| # - name: Install Playwright Browsers | |
| # run: yarn playwright install --with-deps | |
| # - name: E2E Tests | |
| # run: yarn test:e2e | |
| - name: Build | |
| run: yarn build | |
| env: | |
| SKIP_ENV_VALIDATION: true | |
| EMAIL_FROM: envless@example.com |