Skip to content

Added linkedin and instagram to services, and test for linkedin #44

Added linkedin and instagram to services, and test for linkedin

Added linkedin and instagram to services, and test for linkedin #44

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
test:
if: github.repository_owner == 'ParkingReformNetwork'
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Check TypeScript
run: npm run check
- name: Lint
run: npm run lint
- name: Test
run: npm test