Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Roadmap Voting App CI
on:
push:
branches: [ main ]
paths:
- '**'
pull_request:
branches: [ main ]
paths:
- '**'
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20.x'
- name: Install Dependencies
run: |
npm install
- name: Lint
run: |
npm run lint
- name: Run Tests
run: |
npm test