Skip to content

Merge pull request #163 from matrix-org/hs/update-bot-sdk #115

Merge pull request #163 from matrix-org/hs/update-bot-sdk

Merge pull request #163 from matrix-org/hs/update-bot-sdk #115

Workflow file for this run

name: Linting and Tests
on:
push:
branches: ["main"]
pull_request:
jobs:
run-unit-tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn
- run: yarn test
build:
name: Build JSONSchema and TypeScript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
# TODO build:web fails currently, but it'd be good to make that work when possible and then add it here.
- run: yarn
- run: yarn build:jsonschema
- run: yarn build:ts