Skip to content

Feature: Add External Source (and External Event) Attribute Validation #131

Feature: Add External Source (and External Event) Attribute Validation

Feature: Add External Source (and External Event) Attribute Validation #131

Workflow file for this run

name: Lint
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: npm
- name: Install Dev Dependencies and Build
run: |
npm install
npm run build
- name: Lint
run: |
npm run lint
- name: Check formatting
run: |
npm run format:check