Treating warnings as errors because process.env.CI = true.
Most CI servers set it automatically.
Failed to compile.
- name: Project Build
run: npm run build
env:
CI: ""
run: npm run build ▶ - run: CI='false' npm run build
https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
https://velog.io/@thovy/PROJECT-Github-Action-을-이용한-배포의-첫-걸음