feat: PgBouncer => external connection pooler #10714
Workflow file for this run
This file contains 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: | |
jobs: | |
gatsby-for-percy: | |
name: Percy screenshots via Gatsby build | |
runs-on: ubuntu-latest | |
env: | |
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
cache: 'npm' | |
node-version: '14' | |
- run: | | |
npm ci | |
- run: npx gatsby clean | |
- run: npx gatsby build --prefix-paths | |
- run: npx percy snapshot -t 10000 ./public |