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

Update eslint

Update eslint #688

Workflow file for this run

name: test
on:
push:
paths-ignore:
- '**.md'
- 'LICENSE'
- 'NOTICE'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm --version
- run: npm install
- run: npm run build
- run: npm run lint
- name: Slack Notification
if: failure()
uses: rtCamp/action-slack-notify@v2
env:
SLACK_CHANNEL: media-processors
SLACK_COLOR: danger
SLACK_TITLE: Failure test
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}