chore(deps): update all non-major dependencies #1379
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: . |