Skip to content

Bump @types/pg from 8.10.5 to 8.10.7 #467

Bump @types/pg from 8.10.5 to 8.10.7

Bump @types/pg from 8.10.5 to 8.10.7 #467

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '**'
workflow_dispatch: # Allows the workflow to be triggered manually
env:
JOB_NODE_VERSION: '16.19.0' # Chosen to match what is used internally by the Heroku CLI
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.JOB_NODE_VERSION }}
cache: yarn
- name: Install dependencies
run: yarn install
- name: Run eslint
run: yarn lint
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.JOB_NODE_VERSION }}
cache: yarn
- name: Install dependencies
run: yarn install
- name: Run unit tests
run: yarn test