Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

fix: log updates to admin channel #535

fix: log updates to admin channel

fix: log updates to admin channel #535

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- name: install dependencies
run: npm ci
- name: lint check
run: npm run lint
- name: run tests
run: npm run test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- name: install dependencies
run: npm ci
- name: build app
run: npm run build