Skip to content

DEVREL-811 feat: allow dev to specify their own OFTs #4

DEVREL-811 feat: allow dev to specify their own OFTs

DEVREL-811 feat: allow dev to specify their own OFTs #4

Workflow file for this run

name: PR Build
on:
pull_request:
branches:
- "**"
permissions:
contents: read
concurrency:
group: pr-build-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
project: [vite, next, next-reown]
defaults:
run:
working-directory: ${{ matrix.project }}
env:
NEXT_TELEMETRY_DISABLED: 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
cache-dependency-path: |
vite/pnpm-lock.yaml
next/pnpm-lock.yaml
next-reown/pnpm-lock.yaml
- name: Install dependencies
run: |
if [ -f pnpm-lock.yaml ]; then
pnpm install --frozen-lockfile
else
pnpm install
fi
- name: Build
run: pnpm build