feat: release notes yml file added #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Notes_CI-CD_SCD_A2_Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
integration: | |
name: Lint and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
echo "installing dependencies..." | |
npm install | |
- name: Run Unit Tests | |
run: npm test | |
continue-on-error: true | |
- name: Run Linting | |
run: | | |
echo "running linting tests..." | |
npm run lint | |
env: | |
CI: true |