Skip to content

chore(deps): update nextjs monorepo to v14.2.5 #1307

chore(deps): update nextjs monorepo to v14.2.5

chore(deps): update nextjs monorepo to v14.2.5 #1307

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build-and-run-prettier:
name: Build and run prettier
runs-on: ubuntu-latest
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
- name: Cache node modules
uses: actions/cache@v4
env:
cache-name: cache-node-modules-v2
with:
path: |
node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
- name: Cache NextJS Build
uses: actions/cache@v4
env:
cache-name: next-build-tests
with:
path: |
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('yarn.lock') }}-${{ hashFiles('components/**/*.tsx','components/**/*.ts', 'pages/**/*.tsx','pages/**/*.ts', 'src/**/*.tsx','src/**/*.ts' )}}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn --prefer-offline --frozen-lockfile install
- name: Build
run: yarn build
- name: Run prettier
run: |
yarn lint:prettier
- name: Run Jest Test
run: |
yarn test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}