Skip to content

feat(spam-detection): show spam score and add mark spam / set feature value input #208

feat(spam-detection): show spam score and add mark spam / set feature value input

feat(spam-detection): show spam score and add mark spam / set feature value input #208

Workflow file for this run

name: Test
on:
pull_request:
branches:
- '*'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Setup Node.js
uses: actions/setup-node@v2.1.3
with:
node-version: '12.16'
- name: Cache Dependencies
id: cache
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build:develop
- name: Slack Notification
if: always()
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
author_name: matters-oss
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took