Skip to content

Bump next from 14.2.21 to 14.2.26 in /photo-upload-app #23

Bump next from 14.2.21 to 14.2.26 in /photo-upload-app

Bump next from 14.2.21 to 14.2.26 in /photo-upload-app #23

Workflow file for this run

name: Photo Upload App CI
on:
push:
branches: [ main ]
paths:
- 'photo-upload-app/**'
pull_request:
branches: [ main ]
paths:
- 'photo-upload-app/**'
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20.x'
- name: Install Dependencies
run: |
cd photo-upload-app
npm install
- name: Lint
run: |
cd photo-upload-app
npm run lint
- name: Run Tests
run: |
cd photo-upload-app
npm test