Skip to content

Bump sanitize-html from 2.10.0 to 2.12.1 in /examples/slack-starter #392

Bump sanitize-html from 2.10.0 to 2.12.1 in /examples/slack-starter

Bump sanitize-html from 2.10.0 to 2.12.1 in /examples/slack-starter #392

Workflow file for this run

name: Tests
on:
push:
branches:
- develop
workflow_dispatch:
pull_request:
jobs:
lint:
runs-on: ubuntu-22.04
container: node:20
steps:
- uses: actions/checkout@v2
- run: yarn --strict-semver --frozen-lockfile
- run: yarn lint
test:
strategy:
matrix:
node-version: [20, 21]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "${{ matrix.node-version }}"
- run: yarn --frozen-lockfile
- run: yarn add nedb --peer
- run: yarn build && yarn test
test-postgres:
runs-on: ubuntu-22.04
container: node:20
services:
postgres:
image: postgres:latest
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres_password
POSTGRES_PORT: 5432
POSTGRES_USER: postgres_user
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- run: yarn --frozen-lockfile
- run: yarn add nedb --peer
- run: yarn test
env:
BRIDGE_TEST_PGDB: "bridge_integtest"
BRIDGE_TEST_PGURL: "postgresql://postgres_user:postgres_password@postgres"