Skip to content

build(deps): bump the github-actions group across 1 directory with 2 updates #46

build(deps): bump the github-actions group across 1 directory with 2 updates

build(deps): bump the github-actions group across 1 directory with 2 updates #46

Workflow file for this run

name: Website checks
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
- ready_for_review
workflow_dispatch:
permissions:
contents: read
concurrency:
group: website-checks-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
website:
name: Website contract
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Install the pinned pnpm release
uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
with:
package_json_file: website/package.json
- name: Set up Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version-file: website/package.json
cache: pnpm
cache-dependency-path: website/pnpm-lock.yaml
- name: Install the frozen website package
run: pnpm --dir website install --frozen-lockfile
- name: Verify the website contract
run: pnpm --dir website check