fix: support multiline graphql in curl #12240
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: Main workflow | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# cancel in-progress runs on new commits to same PR (gitub.event.number) | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
cancel-in-progress: true | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
checks: | |
timeout-minutes: 20 | |
env: | |
DATABASE_URL: postgres:// | |
AUTH_SECRET: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha || github.sha }} # HEAD commit instead of merge commit | |
- uses: ./.github/actions/ci-setup | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
./node_modules/.cache/prettier/.prettier-cache | |
./node_modules/.cache/eslint/.eslint-cache | |
key: checks-${{ github.sha }} | |
restore-keys: checks- | |
- run: echo ===SHA USED=== ${{ github.event.pull_request.head.sha || github.sha }} # todo: remove after check whats happening on main | |
- run: pnpm prettier --cache --check "**/*.{js,md,ts,tsx}" | |
- run: pnpm eslint . --ext .ts,.tsx --max-warnings 0 --cache --cache-strategy=content --cache-location=node_modules/.cache/eslint/.eslint-cache | |
- run: pnpm -r build | |
- run: pnpm -r size-test | |
- run: pnpm -r checks |