Skip to content

fix: merchant urls (#62) #108

fix: merchant urls (#62)

fix: merchant urls (#62) #108

Workflow file for this run

name: QA
on:
pull_request:
merge_group:
push:
branches:
- canary
concurrency:
group: tests-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8.14.1
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.json') }}-
- name: Install dependencies
run: pnpm --version && pnpm install --frozen-lockfile
- name: Check prettier
run: pnpm prettier --check .
- name: Generate
run: pnpm generate