Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.69 KB

github.md

File metadata and controls

45 lines (36 loc) · 1.69 KB

Github Actions - Features

  • Test against multiple target environment
  • Dedicated test jobs
  • Access to build artifacts
  • Branch protections
  • Required reviews
  • Obvious approvals

Github Actions - Run on multipl os'es

    strategy:
      matrix:
        node-version: [10.x, 12.x, 14.x]
        os: [ubuntu-latest, windows-2016]

To preview github html source as normal html

Sample message for every repository

…or create a new repository on the command line echo "# DroolsPOC" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/mohanmca/DroolsPOC.git git push -u origin master

Github Actions