CI: Autobuild job
See original GitHub issueMotivation
When editing files here on GitHub one cannot run npm run build
Description Please consider adding a CI job:
- runs
npm run build
- commit the changes
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Auto DevOps - GitLab Docs
Auto DevOps detects your programming language and uses CI/CD templates to create and run default pipelines to build and test your application. Then,...
Read more >Continuous Integration - Everything curl
We run CI jobs on several different operating systems, including Linux, macOS, Windows, Solaris and FreeBSD. We run jobs that build and test...
Read more >build running automatically in gitlab - Stack Overflow
1) Possible Scenario why auto build starts: You have a .gitlab-ci.yml file in your repository root; You have turned on AutoDevOps for your ......
Read more >Triggering builds from CI - Expo Documentation
Learn how to trigger builds on EAS for your app from a CI environment such as GitHub Action and more.
Read more >Continuous integration and delivery (CI/CD) using CDK ...
CDK Pipelines is a construct library module for painless continuous delivery of AWS CDK applications. Whenever you check your AWS CDK app's source...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
We could also ditch the older node versions. This has the disadvantage that version-specific bugs in node causing different build results might go undetected but it’s a lot simpler.
Currently in the final CI step
exit 1
makes the whole thing fail 🌧️ https://github.com/PrismJS/prism/blob/master/.github/workflows/test.yml#L43-L46Instead we could commit those files.
Side-effect:
node-version: [10.x, 12.x, 14.x]
should run after each other to allow this procedure.