Skip to content

Update eslint

Update eslint #1114

Workflow file for this run

name: test
on:
push:
paths-ignore:
- '**.md'
- 'LICENSE'
- 'NOTICE'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16', '18', '20']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm --version
- uses: goto-bus-stop/setup-zig@v2
- run: zig version
- run: npm install
- run: npm run build
- run: npm run lint
- run: npm run doc
- run: cd packages/light-adjustment/zig/ && zig build test
- 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 }}