Skip to content

feat: release notes yml file added #25

feat: release notes yml file added

feat: release notes yml file added #25

Workflow file for this run

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