Skip to content

fix: update OrderedList prop name for styled component #1807

fix: update OrderedList prop name for styled component

fix: update OrderedList prop name for styled component #1807

Workflow file for this run

name: Build
on:
pull_request:
types: [ labeled, opened, synchronize, reopened ]
jobs:
build-website:
# only run a manual build when the PR comes from Dependabot
# as gatsby doesn't run on automated pull requests
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
name: Build Website
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
env:
CONTENTFUL_SPACE_ID: ${{ secrets.CONTENTFUL_SPACE_ID }}
CONTENTFUL_ACCESS_TOKEN: ${{ secrets.CONTENTFUL_ACCESS_TOKEN }}