Results 54 comments of James

- `yarn build` to build the static site - `yarn run serve` to [serve the static site](https://docusaurus.io/docs/deployment#testing-build-locally) I have the searchbar working locally with this.

In a private repo I use ``` jobs: release: runs-on: ${{ matrix.os }} strategy: matrix: include: - os: windows-latest artifactName: windows - os: macos-latest artifactName: macos steps: ... ``` `macos-latest`...

The filename for this action is `actions.yml`. I'd suggest `buildAndRelease.yml` (as per the `name` at the top of the file), because you might add more actions later.

> Already tried that, didn't work. I think it's possible that even though the action has ``` on: push: pull_request: ``` it is actually running the action.yml file that is...

Yeah, I tried putting it to main on a fork and then doing a PR - and it isn't in the jobs list ([link](https://github.com/IdiosApps/mill/actions/runs/2474432130)). I double checked my private repo...

> @IdiosApps I guess I found the issue. I have some explicitly included jobs. Turns out, I also need to explicitly specify a value for `matrix.os` for these jobs. Now,...

@lefou I'll try and have a look. It seems there's already some Zinc issues for local tests on Windows: ``` X mill.integration.forked.ZincIncrementalCompilationTests.incremental compilation only compiles changed files 13634ms utest.AssertionError: assert(modelInfo1.ctime...

Double checked, it's JVM changes that lead to the issue. Mill versions aren't the issue. With JVM upgrades being more frequent now, this might be a bit more important.

Out of curiosity, where does dependabot config live in this repo? I couldn't see a file for it. I was expecting some like ``` version: 2 updates: - package-ecosystem: "npm"...

> It's enabled implicitly. If you enable it via GitHub without a config file, a sane default is used Ah okay, I didn't know that was possible. I see it's...