Skip to content

updated workflow

updated workflow #1

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on:
push:
branches:
- 'main'
- 'development'
- 'feature**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Dependencies
run: npm install
- name: Run Tests and Linting
run: |
npm test
npm run lint