forked from stratum-mining/stratumprotocol.org
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 792 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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@v3
with:
submodules: 'recursive'
- name: Setup
uses: actions/setup-node@v3
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 2>/dev/null | grep "Getting links from\|BROKEN"
continue-on-error: false