docs: update logging docs for slog-native architecture (#73) #179
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: Playwright Tests | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@c515ec17f69368147deb311832da000dd229d338 # v1.297.0 | |
| with: | |
| ruby-version: "3.2" | |
| bundler-cache: true | |
| - name: Build Jekyll site | |
| run: bundle exec jekyll build | |
| env: | |
| JEKYLL_ENV: production | |
| PAGES_REPO_NWO: go-coldbrew/docs.coldbrew.cloud | |
| JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Setup Node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Playwright Chromium | |
| run: npx playwright install chromium | |
| - name: Run Playwright tests | |
| run: npx playwright test | |
| env: | |
| CI: true | |
| - name: Upload test report | |
| uses: actions/upload-artifact@v5 | |
| if: ${{ !cancelled() }} | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 14 |