feat: Add --release
flag to wasm_builder
#15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: I2::Doc::Links | |
# Verify all links in text files and generated documentation | |
# from source files are valid (return 200-like http code). | |
# https://github.com/lycheeverse/lychee | |
on: | |
pull_request: | |
branches: [main, stable, lts] | |
paths: | |
- '**/*.md' | |
- '**/*.txt' | |
- '**/*.html' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
link_checker: | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@v2 | |
with: | |
args: "'**/*.rs' ." # Check rust source and default text files | |
fail: true |