Skip to content

Medusa V2 Support

Medusa V2 Support #249

Workflow file for this run

name: Build & Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
plugin:
name: Build & Lint Plugin
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/plugin
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 9
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
env:
NODE_ENV: production
- name: Lint
run: pnpm run lint
# examples-storefront:
# name: Build & Lint Example Storefront
# runs-on: ubuntu-latest
# strategy:
# matrix:
# directory: [examples/storefront, examples/backend]
# defaults:
# run:
# working-directory: ${{ matrix.directory }}
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v3
# - name: Setup Node.js 18
# uses: actions/setup-node@v3
# with:
# node-version: 18
# cache: "yarn"
# cache-dependency-path: ${{ matrix.directory }}/yarn.lock
# - name: Install Dependencies
# run: yarn install --frozen-lockfile
# - name: Build
# run: yarn next experimental-compile # Skip static page generation
# env:
# NODE_ENV: production
# NEXT_PUBLIC_PAYSTACK_PUBLIC_KEY: ci
# - name: Lint
# run: yarn lint