Principals and techniques are more valuable that specific skills

It seems like everyone wants to learn to program and become a developer nowdays, which is great, but there’s a noticeable trend online of people asking how to learn language xyz in the shortest amount of time imaginable and get a job by next month, which is a completely unrealistic expectation. We all have bills …

GitHub Action running npm build fails on warnings

On a new GitHub Action I’ve added on a React project, the npm run build is failing because apparently GitHib Actions treat warnings as errors: Treating warnings as errors because process.env.CI = true. Most CI servers set it automatically. Failed to compile. Following advice on questions to this post, adding CI=false to the ‘npm run …