Add the ability to export norg files to HTML (#1688) #482
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: "Nix-based Integration Test" | |
| # This workflow attempts to install Neorg with a kickstart config on all major OSes. | |
| # Uses Nix for reproducability. | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| integration-test: | |
| runs-on: ${{ matrix.os.host }} | |
| strategy: | |
| matrix: | |
| os: | |
| - host: ubuntu-24.04 | |
| # - host: windows-2019 | |
| - host: macos-13 # x86_64 | |
| - host: macos-14 # aarch64 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DeterminateSystems/nix-installer-action@v17 | |
| - name: Run Checks | |
| run: nix run .#integration-test |