Skip to content

⬆️ Bump next from 13.4.9 to 13.5.0 #200

⬆️ Bump next from 13.4.9 to 13.5.0

⬆️ Bump next from 13.4.9 to 13.5.0 #200

Workflow file for this run

name: Test build
on:
push:
branches-ignore:
- master
paths-ignore:
- .gitignore
- LICENSE
- README.md
- images/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version-file: package.json
- uses: actions/cache@v3
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-nextjs-
- run: npm install
- run: npm run build