Skip to content

Bump ws from 8.16.0 to 8.17.1 in /roadmap-voting-app #11

Bump ws from 8.16.0 to 8.17.1 in /roadmap-voting-app

Bump ws from 8.16.0 to 8.17.1 in /roadmap-voting-app #11

Workflow file for this run

name: Roadmap Voting App CI
on:
push:
branches: [ main ]
paths:
- 'roadmap-voting-app/**'
pull_request:
branches: [ main ]
paths:
- 'roadmap-voting-app/**'
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: |
cd roadmap-voting-app
npm install
- name: Lint
run: |
cd roadmap-voting-app
npm run lint
- name: Run Tests
run: |
cd roadmap-voting-app
npm test