build(deps): bump next from 14.2.3 to 14.2.10 #335
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: Dev PR Build and Test Pipeline | |
on: | |
pull_request: | |
branches: | |
- development | |
jobs: | |
build-test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: npm ci | |
- name: Linter | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: Test and Coverage | |
run: npm run test --coverage | |
- name: Check Production Build Correctness | |
run: rm -rf node_modules && npm ci --omit=dev && npm run build |