Skip to content

Bump jws from 3.2.2 to 3.2.3 #17

Bump jws from 3.2.2 to 3.2.3

Bump jws from 3.2.2 to 3.2.3 #17

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
services:
postgres:
image: postgres:11.6
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- "0.0.0.0:5432:5432"
# needed because the postgres container does not provide a healthcheck
options:
--health-cmd pg_isready --health-interval 10s --health-timeout 5s
--health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install pg_dump
run: |
sudo bash -c "echo deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main >> /etc/apt/sources.list.d/pgdg.list"
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get -yqq install postgresql-client-11
- name: yarn, lint, build and test
run: |
cp .env.ci .env
yarn --frozen-lockfile
CONFIRM_DROP=1 yarn setup
yarn build
yarn lint
yarn test --ci
yarn depcheck