Ethan Brouwer
Ethan Brouwer
@joshmgross, I'm hitting some permissions errors hitting that specific endpoint. Any idea what permissions my job/workflow token needs to be able to have the `environments:read` scope? I even tried with...
You guys all make great points. What if we had one of the following options to reduce the repetitiveness? ```json { "extends": ["../../../tsconfig.base.json"], "references": "inherit" ``` ^^ This leads to...
`tsconfig.json` compiles everything, including my test files. `tsconfig.build.json` excludes all test files and anything else like a db seed file or whatever that I don't want included in the production...
I think the problem is with the error message. Here's an example of what I'm seeing: ```typescript it('github issue', () => { const mock = jest.fn(); mock('hello', 'world', '!'); expect(mock).toHaveBeenCalledExactlyOnceWith('hello',...
I put some changes on a virtual branch, then when I make some more changes, I can't move those files to a new virtual branch if they're in the same...
I'm getting the same issue, and I think it's because my local arch is different than the docker arch. So my `package-lock.json` file has this: ```json "node_modules/snappy/node_modules/@napi-rs/snappy-darwin-arm64": { "version": "7.2.2",...
I ended up adding all of the runtimes as optional dependencies, so that no matter where I'm running `npm ci` from, I get all of them. ```json "optionalDependencies": { "@napi-rs/snappy-android-arm-eabi":...