Alephium Assemble Update, Oct 29 #826
This file contains hidden or 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: Test | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 18 | |
| - name: Build website | |
| # The build script checks for dead links | |
| run: npm ci && npm run build | |
| - name: Link Checker | |
| id: lychee | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| fail: true | |
| args: --base-url https://docs.alephium.org --exclude-all-private --exclude '^file:' --accept '100..=103,200..=299,403,429' './**/*.html' | |
| workingDirectory: build |