Skip to content

build(deps): update dependency contentful to ^10.3.0 (#2717) #4238

build(deps): update dependency contentful to ^10.3.0 (#2717)

build(deps): update dependency contentful to ^10.3.0 (#2717) #4238

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
push:
branches: [main]
tags: ['!v*']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Enable corepack
run: corepack enable
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- env:
NEXT_PUBLIC_CONTENTFUL_ACCESS_TOKEN: ${{ secrets.CONTENTFUL_ACCESS_TOKEN }}
NEXT_PUBLIC_CONTENTFUL_SPACE_ID: ${{ secrets.CONTENTFUL_SPACE_ID }}
NEXT_PUBLIC_BASE_URL: https://inaba-jinja.test
UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
name: Build
run: pnpm build
- name: Format check
run: pnpm format-check
- name: Lint
run: pnpm lint
# - name: Test
# run: pnpm test --ci --coverage