Skip to content

sql/internal/sqlx: allow extending diff with fk attributes #2139

sql/internal/sqlx: allow extending diff with fk attributes

sql/internal/sqlx: allow extending diff with fk attributes #2139

Workflow file for this run

name: CI - Documentation Website
on:
push:
branches-ignore:
- master
jobs:
docsite_ci:
name: verify build doesn't crash
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./doc/website
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm install
- name: Build website
run: npm run build