Skip to content

⬆️ Bump braces from 3.0.2 to 3.0.3 #203

⬆️ Bump braces from 3.0.2 to 3.0.3

⬆️ Bump braces from 3.0.2 to 3.0.3 #203

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@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version-file: package.json
- uses: actions/cache@v4
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-nextjs-
- run: npm ci
- run: npm run build