Skip to content

chore(deps): bump next from 14.0.0 to 14.2.15 in /examples/storefront #265

chore(deps): bump next from 14.0.0 to 14.2.15 in /examples/storefront

chore(deps): bump next from 14.0.0 to 14.2.15 in /examples/storefront #265

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