Support authenticated media (by updating the matrix-bot-sdk) (#509) #433
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |