Skip to content

Bump typescript from 5.6.3 to 5.7.2 #427

Bump typescript from 5.6.3 to 5.7.2

Bump typescript from 5.6.3 to 5.7.2 #427

Workflow file for this run

name: Test & Build
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build:
name: Build Application
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: NextJS Cache
id: build-cache
uses: actions/cache@v4
with:
path: |
~/.npm
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
- name: Install NPM Dependencies
run: npm ci
- name: ESLint
run: npm run lint
- name: NPM Tests
run: NODE_ENV=test npm run test:ci
- name: NPM Build
run: npm run build