Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: CodeForPhilly/philly-ward-leaders
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6661aa1ff6627db487104905c57b8d671398f073
Choose a base ref
..
head repository: CodeForPhilly/philly-ward-leaders
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: db7f74f5b44191a3246e256dcbb5ad8ab9801c10
Choose a head ref
Showing with 1,763 additions and 1,121 deletions.
  1. +32 −0 .github/workflows/node.js.yml
  2. +1 −1 data-scripts/input_data/README.md
  3. +1,727 −1,118 package-lock.json
  4. +3 −2 package.json
32 changes: 32 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm test
2 changes: 1 addition & 1 deletion data-scripts/input_data/README.md
Original file line number Diff line number Diff line change
@@ -22,4 +22,4 @@ https://www.philadelphiavotes.com/en/home/item/2126-2022_primary_committeepeople

From Pat Christmas at Committee of Seventy via the party city committees

Ward_Leader_Updates-2022.csv
[Ward_Leader_Updates-2022.csv](https://github.com/CodeForPhilly/philly-ward-leaders/blob/master/data-scripts/input_data/2022/Ward_Leader_Updates-2022.csv)
Loading