Skip to content

chore(deps): update all non-major dependencies #1379

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #1379

Workflow file for this run

name: apps / swap
on:
push:
branches: ["main"]
paths:
- "apps/swap/**"
pull_request:
types: [opened, synchronize]
paths:
- "apps/swap/**"
defaults:
run:
# change this if your nextjs app does not live at the root of the repo
working-directory: ./apps/swap
env:
CI: true
jobs:
ci:
name: continuous integration
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
working-directory: .
- name: Build swap app
run: pnpm build-swap-app
working-directory: .