Skip to content

MATRIX-7876: highlight style changes #8

MATRIX-7876: highlight style changes

MATRIX-7876: highlight style changes #8

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
jobs:
build:
name: Testing and linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: npm install
- name: Linting
run: npm run lint
- name: Testing
run: npm run test