Skip to content

added regex to highlight methods #68

added regex to highlight methods

added regex to highlight methods #68

Workflow file for this run

name: Lint
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Node.js 📦
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies 🔧
run: |
npm ci --also=dev
npm run bootstrap
- name: Build code 🚚
run: npm run build
- name: Lint 🚨
run: npm run eslint:check