Skip to content

Wire up linting and formatting. #1

Wire up linting and formatting.

Wire up linting and formatting. #1

Workflow file for this run

name: Tests
on:
push: # Branch pushes only, not tags
branches:
- "**"
workflow_call: # Allow other workflows to call this one
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npm run lint