Skip to content

fix: change from localhost -> 127.0.0.1 as a potential fix for mac users #116

fix: change from localhost -> 127.0.0.1 as a potential fix for mac users

fix: change from localhost -> 127.0.0.1 as a potential fix for mac users #116

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
# Service containers to run with `container-job`
services:
postgres:
# Docker Hub image
image: postgres
env:
POSTGRES_PASSWORD: somethingsecretfortesting
POSTGRES_USER: gram-test
ports:
- 5433:5432
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: "Clean install"
shell: bash
run: npm ci
- name: "Build"
shell: bash
run: npm run build
- name: "Test"
shell: bash
run: npm test
- name: "Lint"
shell: bash
run: npm run lint