fix(playground): gray out unused-code diagnostics in the editor #51
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| # Cancel superseded runs on the same ref. | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| blog: | |
| runs-on: ubuntu-latest | |
| env: | |
| # mise hits the GitHub Releases API to install the `wado` CLI. | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up mise and install tools | |
| uses: jdx/mise-action@v4.2.0 | |
| - name: Test Sheaf | |
| run: | | |
| mise trust | |
| mise run blog-test | |
| - name: Build the blog | |
| run: mise run blog-build |