Skip to content

deploy: src/specification - bedbf9731fff0e29c5073760610a803cffa8d6f0 #1

deploy: src/specification - bedbf9731fff0e29c5073760610a803cffa8d6f0

deploy: src/specification - bedbf9731fff0e29c5073760610a803cffa8d6f0 #1

Workflow file for this run

name: CI
on:
# Run the build for pushes and pull requests targeting main
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout and setup
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup
uses: actions/setup-node@v4
with:
node-version: 16
# Install and build
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
# Run linkcheck, propagate linkcheck failure through grep pipe
#- name: Linkcheck
# run: |
# set -o pipefail
# yarn linkcheck | grep -v "https://twitter.com" | grep "Getting links from\|BROKEN"
# continue-on-error: false