Skip to content

Fix comment notifications #1097

Fix comment notifications

Fix comment notifications #1097

Workflow file for this run

name: tests
on:
pull_request:
branches:
- master
- dev
- next
push:
branches:
- dev
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.13.2]
steps:
- uses: actions/checkout@v1
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: Run tests
run: npm run test:ci
env:
CI: true